USE [GroceryStoreSimulator]
GO
/****** Object:  User [DBIIGroceryStoreSimulatorUser]    Script Date: 2/5/2017 5:31:30 PM ******/
CREATE USER [DBIIGroceryStoreSimulatorUser] FOR LOGIN [DBIIGroceryStoreSimulatorLogin] WITH DEFAULT_SCHEMA=[dbo]
GO
/****** Object:  User [GroceryStoreSimulatorUser]    Script Date: 2/5/2017 5:31:30 PM ******/
CREATE USER [GroceryStoreSimulatorUser] FOR LOGIN [GroceryStoreSimulatorLogin] WITH DEFAULT_SCHEMA=[dbo]
GO
/****** Object:  DatabaseRole [db_executor]    Script Date: 2/5/2017 5:31:31 PM ******/
CREATE ROLE [db_executor]
GO
ALTER ROLE [db_datareader] ADD MEMBER [DBIIGroceryStoreSimulatorUser]
GO
ALTER ROLE [db_executor] ADD MEMBER [GroceryStoreSimulatorUser]
GO
ALTER ROLE [db_datareader] ADD MEMBER [GroceryStoreSimulatorUser]
GO
ALTER ROLE [db_datawriter] ADD MEMBER [GroceryStoreSimulatorUser]
GO
/****** Object:  UserDefinedFunction [dbo].[fGetCurrentPricePerSellableUnit]    Script Date: 2/5/2017 5:31:31 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	Get the most recent price for a product/store
-- =============================================
CREATE FUNCTION [dbo].[fGetCurrentPricePerSellableUnit]
(
	@ProductID as int,
	@StoreID as int
)
RETURNS money
AS
BEGIN
	--declare @pricePerSellableUnit as money

	--SELECT @pricePerSellableUnit = SELECT TOP 1 pricePerSellableUnit from tProductPriceHist 
	--							   WHERE ProductID = @ProductID AND StoreID = @StoreID
	--							   ORDER BY DateStamp DESC

	RETURN (SELECT TOP 1 pricePerSellableUnit from tProductPriceHist 
								   WHERE ProductID = @ProductID AND StoreID = @StoreID
								   ORDER BY StartDate DESC)

END

GO
/****** Object:  UserDefinedFunction [dbo].[Split]    Script Date: 2/5/2017 5:31:31 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE  FUNCTION [dbo].[Split] (
      @InputString                  VARCHAR(8000),
      @Delimiter                    VARCHAR(50)
)

RETURNS @Items TABLE (
      Item                          VARCHAR(8000)
)

AS
-- http://stackoverflow.com/questions/10581772/how-to-split-a-comma-separated-value-to-columns
BEGIN
      IF @Delimiter = ' '
      BEGIN
            SET @Delimiter = ','
            SET @InputString = REPLACE(@InputString, ' ', @Delimiter)
      END

      IF (@Delimiter IS NULL OR @Delimiter = '')
            SET @Delimiter = ','

--INSERT INTO @Items VALUES (@Delimiter) -- Diagnostic
--INSERT INTO @Items VALUES (@InputString) -- Diagnostic

      DECLARE @Item           VARCHAR(8000)
      DECLARE @ItemList       VARCHAR(8000)
      DECLARE @DelimIndex     INT

      SET @ItemList = @InputString
      SET @DelimIndex = CHARINDEX(@Delimiter, @ItemList, 0)
      WHILE (@DelimIndex != 0)
      BEGIN
            SET @Item = SUBSTRING(@ItemList, 0, @DelimIndex)
            INSERT INTO @Items VALUES (@Item)

            -- Set @ItemList = @ItemList minus one less item
            SET @ItemList = SUBSTRING(@ItemList, @DelimIndex+1, LEN(@ItemList)-@DelimIndex)
            SET @DelimIndex = CHARINDEX(@Delimiter, @ItemList, 0)
      END -- End WHILE

      IF @Item IS NOT NULL -- At least one delimiter was encountered in @InputString
      BEGIN
            SET @Item = @ItemList
            INSERT INTO @Items VALUES (@Item)
      END

      -- No delimiters were encountered in @InputString, so just return @InputString
      ELSE INSERT INTO @Items VALUES (@InputString)

      RETURN

END -- End Function

GO
/****** Object:  Table [dbo].[tBrand]    Script Date: 2/5/2017 5:31:31 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tBrand](
	[BrandID] [int] IDENTITY(1,1) NOT NULL,
	[Brand] [nvarchar](100) NOT NULL,
 CONSTRAINT [PK_tBrand] PRIMARY KEY CLUSTERED 
(
	[BrandID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tConfig]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tConfig](
	[ConfigID] [int] IDENTITY(1,1) NOT NULL,
	[MaxStores] [int] NOT NULL,
 CONSTRAINT [PK_tCOnfig] PRIMARY KEY CLUSTERED 
(
	[ConfigID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tContainer]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tContainer](
	[ContainerID] [int] IDENTITY(1,1) NOT NULL,
	[Container] [nvarchar](50) NOT NULL,
 CONSTRAINT [PK_tContainer] PRIMARY KEY CLUSTERED 
(
	[ContainerID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tCoupon]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tCoupon](
	[CouponID] [int] IDENTITY(1,1) NOT NULL,
	[Coupon] [nchar](100) NOT NULL,
	[CouponDescription] [ntext] NULL,
	[CouponSourceID] [int] NOT NULL,
	[StartDate] [date] NULL,
	[ThroughDate] [date] NULL,
	[MinimumPurchaseRequirement] [money] NOT NULL,
 CONSTRAINT [PK_tCoupon] PRIMARY KEY CLUSTERED 
(
	[CouponID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tCouponDetail]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tCouponDetail](
	[CouponDetailID] [int] IDENTITY(1,1) NOT NULL,
	[CouponID] [int] NOT NULL,
	[ProductID] [int] NULL,
	[DiscountTypeID] [int] NOT NULL,
	[PercentageDiscount] [int] NULL,
	[AmountOff] [money] NULL,
	[MaxQtyToPurchase] [int] NOT NULL,
	[MinQtyToPurchase] [int] NOT NULL,
 CONSTRAINT [PK_tCouponDetail] PRIMARY KEY CLUSTERED 
(
	[CouponDetailID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tCouponSource]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tCouponSource](
	[CouponSourceID] [int] IDENTITY(1,1) NOT NULL,
	[CouponSource] [nvarchar](50) NOT NULL,
 CONSTRAINT [PK_tCouponSource] PRIMARY KEY CLUSTERED 
(
	[CouponSourceID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tDiscountType]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tDiscountType](
	[DiscountTypeID] [int] IDENTITY(1,1) NOT NULL,
	[DiscountType] [nvarchar](50) NOT NULL,
	[IsFree] [bit] NOT NULL,
	[IsPercentageDiscount] [bit] NOT NULL,
	[IsBOGO] [bit] NOT NULL,
	[isAmountOff] [bit] NOT NULL,
	[IsGiftCard] [bit] NOT NULL,
 CONSTRAINT [PK_tDiscountType] PRIMARY KEY CLUSTERED 
(
	[DiscountTypeID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tEmpl]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tEmpl](
	[EmplID] [int] IDENTITY(1,1) NOT NULL,
	[Empl] [nchar](20) NOT NULL,
	[LastName] [nchar](100) NOT NULL,
	[FirstName] [nchar](100) NOT NULL,
	[StoreID] [int] NULL,
	[EmplTitleID] [int] NULL,
	[IsSelfScan] [bit] NOT NULL,
	[DateStamp] [datetime] NULL,
 CONSTRAINT [PK_tEmpl] PRIMARY KEY CLUSTERED 
(
	[EmplID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tEmplHistory]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tEmplHistory](
	[EmplHistoryID] [int] IDENTITY(1,1) NOT NULL,
	[StartDate] [datetime] NOT NULL,
	[EmplStatusID] [int] NOT NULL,
	[Comment] [nvarchar](max) NULL,
	[DateStamp] [datetime] NOT NULL,
	[EmplID] [int] NOT NULL,
 CONSTRAINT [PK_tEmplHistory] PRIMARY KEY CLUSTERED 
(
	[EmplHistoryID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tEmplStatus]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tEmplStatus](
	[EmplStatusID] [int] IDENTITY(1,1) NOT NULL,
	[EmplStatus] [varchar](50) NOT NULL,
	[CanWork] [bit] NOT NULL,
	[IsEmployed] [bit] NOT NULL,
	[IsPermanent] [bit] NOT NULL,
 CONSTRAINT [PK_tEmplStatus] PRIMARY KEY CLUSTERED 
(
	[EmplStatusID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tEmplTitle]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tEmplTitle](
	[EmplTitleID] [int] IDENTITY(1,1) NOT NULL,
	[EmplTitle] [nchar](20) NOT NULL,
	[IsStoreManager] [bit] NOT NULL,
	[IsSelfScan] [bit] NOT NULL,
 CONSTRAINT [PK_tEmplTitle] PRIMARY KEY CLUSTERED 
(
	[EmplTitleID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tIngredient]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tIngredient](
	[IngredientID] [int] IDENTITY(1,1) NOT NULL,
	[Ingredient] [char](400) NOT NULL,
 CONSTRAINT [PK_tIngredient] PRIMARY KEY CLUSTERED 
(
	[IngredientID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tLoyalty]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tLoyalty](
	[LoyaltyID] [int] IDENTITY(1,1) NOT NULL,
	[LoyaltyNumber] [nchar](10) NOT NULL,
	[StoreID] [int] NOT NULL,
	[DateOfIssue] [date] NOT NULL,
	[ZipCode] [nchar](10) NULL,
 CONSTRAINT [PK_tLoyalty] PRIMARY KEY CLUSTERED 
(
	[LoyaltyID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tManufacturer]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tManufacturer](
	[ManufacturerID] [int] IDENTITY(1,1) NOT NULL,
	[Manufacturer] [nvarchar](50) NOT NULL,
	[Code] [nchar](10) NULL,
	[IsSupplier] [bit] NULL,
 CONSTRAINT [PK_tManufacturer] PRIMARY KEY CLUSTERED 
(
	[ManufacturerID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tName]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tName](
	[NameID] [int] IDENTITY(1,1) NOT NULL,
	[Name] [nvarchar](200) NOT NULL,
 CONSTRAINT [PK_tName] PRIMARY KEY CLUSTERED 
(
	[NameID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tNumber]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tNumber](
	[NumberID] [int] IDENTITY(1,1) NOT NULL,
	[Number] [nvarchar](max) NULL,
	[IsPrime] [bit] NULL,
 CONSTRAINT [PK_tNumber] PRIMARY KEY CLUSTERED 
(
	[NumberID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tProduct]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tProduct](
	[ProductID] [int] IDENTITY(1,1) NOT NULL,
	[Status] [nvarchar](255) NULL,
	[UPC-E] [nvarchar](255) NULL,
	[UPC-A ] [nchar](12) NULL,
	[ManufacturerID] [int] NULL,
	[BrandID] [int] NULL,
	[InitialPricePerSellableUnit] [money] NULL,
	[NameID] [int] NOT NULL,
	[Description] [nvarchar](255) NULL,
	[ContainerID] [int] NULL,
	[Size] [float] NULL,
	[Size_UOMID] [int] NULL,
	[I_Size] [float] NULL,
	[I_UOMID] [int] NULL,
	[Parent] [nvarchar](255) NULL,
	[Count] [nvarchar](255) NULL,
	[Endorsement(s)] [nvarchar](255) NULL,
	[Country] [nvarchar](255) NULL,
	[Prepared / Notes - Health Claims] [nvarchar](255) NULL,
	[Serving_Size] [float] NULL,
	[Serving_Size_UOMID] [int] NULL,
	[I_Serving_Size] [float] NULL,
	[I-Serving_Size_UOM] [nvarchar](255) NULL,
	[I-Serving_Size_UOMID] [int] NULL,
	[Pieces] [nvarchar](255) NULL,
	[Servings_Per_Container] [float] NULL,
	[Calories] [float] NULL,
	[Fat_Calories] [nvarchar](255) NULL,
	[Total_Fat_G] [float] NULL,
	[Dvp_Total_Fat] [float] NULL,
	[Saturated_Fat_G] [nvarchar](255) NULL,
	[Dvp_Saturated_Fat] [nvarchar](255) NULL,
	[Trans_Fat_G] [nvarchar](255) NULL,
	[Dvp_Trans_Fat] [nvarchar](255) NULL,
	[Polyunsaturated_Fat_G] [nvarchar](255) NULL,
	[Monounsaturated Fat_G] [nvarchar](255) NULL,
	[Cholesterol_MG] [nvarchar](255) NULL,
	[Dvp_Cholesterol] [nvarchar](255) NULL,
	[Sodium_MG] [float] NULL,
	[Dvp_Sodium] [float] NULL,
	[Potassium_MG] [nvarchar](255) NULL,
	[Dvp_Potassium] [nvarchar](255) NULL,
	[Carbohydrates_G] [float] NULL,
	[Dvp_Carbohydrates] [float] NULL,
	[Fiber_G] [nvarchar](255) NULL,
	[Dvp_Dietary_Fiber] [nvarchar](255) NULL,
	[Sugars_G] [float] NULL,
	[Dvp_Sugar] [nvarchar](255) NULL,
	[Other_Carbohydrates_G] [nvarchar](255) NULL,
	[Sugar Alcohols_G] [nvarchar](255) NULL,
	[Protein_G] [float] NULL,
	[Dvp_Protein] [nvarchar](255) NULL,
	[Net_Carbs_G] [float] NULL,
	[Ingredients] [nvarchar](max) NULL,
	[Warnings] [nvarchar](255) NULL,
	[Allergy Information] [nvarchar](255) NULL,
	[Dvp_Vitamin_A] [nvarchar](255) NULL,
	[Dvp_Vitamin_C] [nvarchar](255) NULL,
	[Dvp_Calcium] [float] NULL,
	[Dvp_Iron] [nvarchar](255) NULL,
	[Dvp_Vitamin_D] [float] NULL,
	[Dvp_Vitamin_E] [nvarchar](255) NULL,
	[Dvp_Vitamin_K] [nvarchar](255) NULL,
	[Dvp_Thiamin] [nvarchar](255) NULL,
	[Dvp_Riboflavin] [nvarchar](255) NULL,
	[Dvp_Niacin] [nvarchar](255) NULL,
	[Dvp_Vitamin_B1] [nvarchar](255) NULL,
	[Dvp_Vitamin_B2] [float] NULL,
	[Dvp_Vitamin_B6] [nvarchar](255) NULL,
	[Dvp_Folic_Acid] [float] NULL,
	[Dvp_Vitamin_B12] [nvarchar](255) NULL,
	[Dvp_Biotin] [nvarchar](255) NULL,
	[DVP_Pantothenic_Acid] [nvarchar](255) NULL,
	[Dvp_Phosphorus] [float] NULL,
	[Dvp_Iodine] [float] NULL,
	[Dvp_Magnesium] [nvarchar](255) NULL,
	[Dvp_Zinc] [nvarchar](255) NULL,
	[Dvp_Selenium] [nvarchar](255) NULL,
	[Dvp_Copper] [nvarchar](255) NULL,
	[Dvp_Manganese] [nvarchar](255) NULL,
	[Dvp_Chromium] [nvarchar](255) NULL,
	[Dvp_Molybdenum] [nvarchar](255) NULL,
	[Dvp_Vitamin_B3] [nvarchar](255) NULL,
	[Dvp_Vitamin_B5] [nvarchar](255) NULL,
	[Dvp_Folate] [nvarchar](255) NULL,
	[Soluble Fiber] [nvarchar](255) NULL,
	[Insoluble Fiber] [nvarchar](255) NULL,
	[Phosphate] [nvarchar](255) NULL,
	[Chloride] [nvarchar](255) NULL,
	[Caffeine_Mg] [float] NULL,
	[Silica] [nvarchar](255) NULL,
	[pH] [nvarchar](255) NULL,
	[Bicarbonates] [nvarchar](255) NULL,
	[Total Dissolved Solids] [nvarchar](255) NULL,
	[Omega 3] [nvarchar](255) NULL,
	[Oleic Acid] [nvarchar](255) NULL,
	[ProductImage] [varbinary](max) NULL,
 CONSTRAINT [PK_tProduct] PRIMARY KEY CLUSTERED 
(
	[ProductID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tProductIngredient]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tProductIngredient](
	[ProductIngredientID] [int] IDENTITY(1,1) NOT NULL,
	[ProductID] [int] NOT NULL,
	[IngredientID] [int] NOT NULL,
	[containsLessThanSomePerCent] [int] NOT NULL,
 CONSTRAINT [PK_tProductIngredient] PRIMARY KEY CLUSTERED 
(
	[ProductIngredientID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tProductPriceHist]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tProductPriceHist](
	[ProductPriceHistID] [int] IDENTITY(1,1) NOT NULL,
	[ProductID] [int] NOT NULL,
	[StoreID] [int] NOT NULL,
	[StartDate] [datetime] NOT NULL,
	[PricePerSellableUnit] [money] NULL,
	[DateTimeStamp] [datetime] NULL,
 CONSTRAINT [PK_tProductPriceHist] PRIMARY KEY CLUSTERED 
(
	[ProductPriceHistID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tServing_size_UOM]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tServing_size_UOM](
	[Serving_size_UOMID] [int] IDENTITY(1,1) NOT NULL,
	[Serving_size_UOM] [varchar](50) NOT NULL,
 CONSTRAINT [PK_tServing_size_UOM] PRIMARY KEY CLUSTERED 
(
	[Serving_size_UOMID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tStore]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tStore](
	[StoreID] [int] IDENTITY(1,1) NOT NULL,
	[Store] [nchar](200) NULL,
	[Address1] [nchar](200) NOT NULL,
	[Address2] [nchar](200) NULL,
	[City] [nchar](200) NOT NULL,
	[State] [nchar](20) NOT NULL,
	[Zip] [nchar](20) NOT NULL,
	[ManagerID] [int] NOT NULL,
	[StoreNumber] [nchar](10) NOT NULL,
 CONSTRAINT [PK_tStore] PRIMARY KEY CLUSTERED 
(
	[StoreID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tStore_StoreComponent]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tStore_StoreComponent](
	[Store_StoreComponentID] [int] IDENTITY(1,1) NOT NULL,
	[StoreID] [int] NOT NULL,
	[StoreComponentID] [int] NOT NULL,
 CONSTRAINT [PK_tStore_StoreComponent] PRIMARY KEY CLUSTERED 
(
	[Store_StoreComponentID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tStoreComponent]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tStoreComponent](
	[StoreComponentID] [int] IDENTITY(1,1) NOT NULL,
	[StoreComponent] [nchar](100) NOT NULL,
 CONSTRAINT [PK_tStoreComponent] PRIMARY KEY CLUSTERED 
(
	[StoreComponentID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tStoreHistory]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tStoreHistory](
	[StoreHistoryID] [int] IDENTITY(1,1) NOT NULL,
	[StoreID] [int] NOT NULL,
	[StartDate] [datetime] NOT NULL,
	[StoreStatusID] [int] NOT NULL,
	[Comment] [nvarchar](max) NULL,
	[DateStamp] [datetime] NOT NULL,
 CONSTRAINT [PK_tStoreHistory] PRIMARY KEY CLUSTERED 
(
	[StoreHistoryID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tStoreStatus]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tStoreStatus](
	[StoreStatusID] [int] IDENTITY(1,1) NOT NULL,
	[StoreStatus] [nvarchar](100) NOT NULL,
	[IsOpenForBusiness] [bit] NOT NULL,
	[IsClosedForever] [bit] NOT NULL,
 CONSTRAINT [PK_tStoreStatus] PRIMARY KEY CLUSTERED 
(
	[StoreStatusID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tSupplyChain]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tSupplyChain](
	[SupplyChainID] [int] IDENTITY(1,1) NOT NULL,
	[ProductID] [int] NOT NULL,
	[ManufacturerID] [int] NOT NULL,
	[Comment] [nvarchar](max) NULL,
 CONSTRAINT [PK_tSupplyChainID] PRIMARY KEY CLUSTERED 
(
	[SupplyChainID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tTransaction]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tTransaction](
	[TransactionID] [int] IDENTITY(1,1) NOT NULL,
	[TimeOfTransaction] [time](7) NOT NULL,
	[DateOfTransaction] [date] NOT NULL,
	[StoreID] [int] NOT NULL,
	[LoyaltyID] [int] NOT NULL,
	[TransactionTypeID] [int] NOT NULL,
	[EmplID] [int] NOT NULL,
	[Comment] [nvarchar](max) NULL,
	[DateEntered] [datetime2](7) NULL,
 CONSTRAINT [PK_tTransaction] PRIMARY KEY CLUSTERED 
(
	[TransactionID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tTransactionDetail]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tTransactionDetail](
	[TransactionDetailID] [int] IDENTITY(1,1) NOT NULL,
	[TransactionID] [int] NULL,
	[ProductID] [int] NULL,
	[QtyOfProduct] [int] NULL,
	[PricePerSellableUnitAsMarked] [money] NULL,
	[TotalPrice] [money] NULL,
	[Comment] [nvarchar](max) NULL,
	[CouponDetailID] [int] NULL,
	[PricePerSellableUnitToTheCustomer] [money] NULL,
 CONSTRAINT [PK_tTransactionDetail] PRIMARY KEY CLUSTERED 
(
	[TransactionDetailID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tTransactionType]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tTransactionType](
	[TransactionTypeID] [int] IDENTITY(1,1) NOT NULL,
	[TransactionType] [nvarchar](50) NOT NULL,
 CONSTRAINT [PK_tTransactionType] PRIMARY KEY CLUSTERED 
(
	[TransactionTypeID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  Table [dbo].[tUOM]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tUOM](
	[UOMID] [int] IDENTITY(1,1) NOT NULL,
	[UOM] [nvarchar](50) NOT NULL,
 CONSTRAINT [PK_tUOM] PRIMARY KEY CLUSTERED 
(
	[UOMID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
/****** Object:  View [dbo].[vCouponDetail]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vCouponDetail]
AS
SELECT        dbo.tCouponDetail.*
FROM            dbo.tCouponDetail

GO
/****** Object:  UserDefinedFunction [dbo].[fGetCouponDetail]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson nicholdw@ucmail.uc.edu
-- Description:	Retreive all the info about a coupon detail
-- =============================================
CREATE  FUNCTION [dbo].[fGetCouponDetail] 
(	
	@couponDetailID int
)
RETURNS TABLE 
AS
RETURN 
(
	SELECT * from vCouponDetail WHERE CouponDetailID=@couponDetailID
)

GO
/****** Object:  View [dbo].[vDiscountType]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vDiscountType]
AS
SELECT        dbo.tDiscountType.*
FROM            dbo.tDiscountType

GO
/****** Object:  UserDefinedFunction [dbo].[fGetDiscountType]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson nicholdw@ucmail.uc.edu
-- Description:	Retreive all the records in info about a coupon detail
-- =============================================
Create  FUNCTION [dbo].[fGetDiscountType] 
(	
	@DiscountTypeID as int
)
RETURNS TABLE 
AS
RETURN 
(
	SELECT * from vDiscountType where DiscountTypeID = @DiscountTypeID
)

GO
/****** Object:  View [dbo].[vCouponInfo]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vCouponInfo]
AS
SELECT        dbo.tCoupon.Coupon, dbo.tCoupon.Description, dbo.tCouponSource.CouponSource, dbo.tCoupon.StartDate, dbo.tCoupon.ThroughDate, 
                         dbo.tProduct.Description AS ProductDescription, dbo.tCouponDetail.AmountOff, dbo.tCouponDetail.PercentageDiscount, dbo.tDiscountType.DiscountType, 
                         dbo.tDiscountType.IsFree, dbo.tDiscountType.IsPercentageDiscount, dbo.tDiscountType.IsBOGO, dbo.tDiscountType.isAmountOff, dbo.tCoupon.CouponID
FROM            dbo.tCoupon INNER JOIN
                         dbo.tCouponDetail ON dbo.tCoupon.CouponID = dbo.tCouponDetail.CouponID INNER JOIN
                         dbo.tCouponSource ON dbo.tCoupon.CouponSourceID = dbo.tCouponSource.CouponSourceID INNER JOIN
                         dbo.tDiscountType ON dbo.tCouponDetail.DiscountTypeID = dbo.tDiscountType.DiscountTypeID INNER JOIN
                         dbo.tProduct ON dbo.tCouponDetail.ProductID = dbo.tProduct.ProductID

GO
/****** Object:  UserDefinedFunction [dbo].[fGetCouponInfo]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson nicholdw@ucmail.uc.edu
-- Description:	Retreive all the info about a coupon
-- =============================================
CREATE  FUNCTION [dbo].[fGetCouponInfo] 
(	
	@couponID int
)
RETURNS TABLE 
AS
RETURN 
(
	-- Add the SELECT statement with parameter references here
	SELECT * from vCouponInfo WHERE CouponID=@couponID
)

GO
/****** Object:  View [dbo].[vCoupon]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vCoupon]
AS
SELECT        CouponID, Coupon, Description, CouponSourceID, StartDate, ThroughDate
FROM            dbo.tCoupon

GO
/****** Object:  UserDefinedFunction [dbo].[fGetCouponsOpen]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson nicholdw@ucmail.uc.edu
-- Description:	Retreive all the info about a coupon
-- =============================================
CREATE  FUNCTION [dbo].[fGetCouponsOpen] 
(	
	@couponDate Date
)
RETURNS TABLE 
AS
RETURN 
(
	SELECT * from vCoupon WHERE @couponDate Between StartDate and ThroughDate
)

GO
/****** Object:  View [dbo].[vCouponDetailsCurrentlyOpen]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vCouponDetailsCurrentlyOpen]
AS
SELECT        dbo.tCouponDetail.CouponDetailID, dbo.tCouponDetail.ProductID, dbo.tCouponDetail.CouponID, dbo.tCouponDetail.DiscountTypeID, dbo.tCouponDetail.AmountOff, 
                         dbo.tCouponDetail.PercentageDiscount, dbo.tDiscountType.DiscountType, dbo.tDiscountType.IsFree, dbo.tDiscountType.IsBOGO, 
                         dbo.tDiscountType.IsPercentageDiscount, dbo.tDiscountType.isAmountOff
FROM            dbo.tCoupon INNER JOIN
                         dbo.tCouponDetail ON dbo.tCoupon.CouponID = dbo.tCouponDetail.CouponID LEFT OUTER JOIN
                         dbo.tDiscountType ON dbo.tCouponDetail.DiscountTypeID = dbo.tDiscountType.DiscountTypeID
WHERE        ({ fn NOW() } BETWEEN dbo.tCoupon.StartDate AND dbo.tCoupon.ThroughDate)

GO
/****** Object:  UserDefinedFunction [dbo].[fGetCouponDetailsCurrentlyOpenByProductID]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Description:	Look up all the open coupons that contain a specific product ID
-- =============================================
Create FUNCTION [dbo].[fGetCouponDetailsCurrentlyOpenByProductID] 
(	
	@productID int
)
RETURNS TABLE 
AS
RETURN 
(
--			 Columns are zero-based when you read from the DataReader object in the C# Code
	SELECT   dbo.vCouponDetailsCurrentlyOpen.couponDetailID AS couponDetailID
	FROM     vCouponDetailsCurrentlyOpen
	WHERE   (dbo.vCouponDetailsCurrentlyOpen.productID = @productID)
)

GO
/****** Object:  View [dbo].[vMaxTransactionID]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vMaxTransactionID]
AS
SELECT        MAX(TransactionID) AS maxTransactionID
FROM            dbo.tTransaction

GO
/****** Object:  View [dbo].[vLastTransactionInfo]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vLastTransactionInfo]
AS
SELECT        LTRIM(RTRIM(dbo.tStore.Store)) + N': ' + LTRIM(RTRIM(dbo.tStore.StoreNumber)) + N', ' + CONVERT(varchar(10), dbo.tTransaction.DateOfTransaction, 20) 
                         + N' ' + CONVERT(varchar(23), dbo.tTransaction.TimeOfTransaction, 121) AS Expr2
FROM            dbo.tTransaction INNER JOIN
                         dbo.tStore ON dbo.tTransaction.StoreID = dbo.tStore.StoreID INNER JOIN
                         dbo.vMaxTransactionID ON dbo.tTransaction.TransactionID = dbo.vMaxTransactionID.maxTransactionID

GO
/****** Object:  View [dbo].[vTotalSalesByProduct]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vTotalSalesByProduct]
AS
SELECT        TOP (100) PERCENT dbo.tTransactionDetail.ProductID, dbo.tProduct.Description, dbo.tName.Name, SUM(dbo.tTransactionDetail.TotalPrice) AS SaleAmount
FROM            dbo.tTransactionDetail INNER JOIN
                         dbo.tProduct ON dbo.tTransactionDetail.ProductID = dbo.tProduct.ProductID INNER JOIN
                         dbo.tName ON dbo.tProduct.NameID = dbo.tName.NameID
GROUP BY dbo.tProduct.Description, dbo.tName.Name, dbo.tTransactionDetail.ProductID
ORDER BY SaleAmount, dbo.tProduct.Description

GO
/****** Object:  UserDefinedFunction [dbo].[fTotalSalesByProduct]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE FUNCTION [dbo].[fTotalSalesByProduct]
(	
	-- Add the parameters for the function here
	@ProductID int

)
RETURNS TABLE 
AS
RETURN 
(
	SELECT * from vTotalSalesByProduct where ProductID = @ProductID
	)

GO
/****** Object:  View [dbo].[vPurchaseTotals]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vPurchaseTotals]
AS
SELECT        TOP (100) PERCENT dbo.tTransaction.TransactionID, dbo.tTransaction.TimeOfTransaction, dbo.tTransaction.DateOfTransaction, 
                         SUM(dbo.tTransactionDetail.TotalPrice) AS SumOfTotalPrice
FROM            dbo.tTransactionDetail INNER JOIN
                         dbo.tTransaction ON dbo.tTransactionDetail.TransactionID = dbo.tTransaction.TransactionID
GROUP BY dbo.tTransaction.TransactionID, dbo.tTransaction.TimeOfTransaction, dbo.tTransaction.DateOfTransaction
ORDER BY dbo.tTransaction.TransactionID

GO
/****** Object:  View [dbo].[vAvery]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vAvery]
AS
SELECT        dbo.tStore.Store, dbo.tStore.StoreNumber, dbo.vPurchaseTotals.TimeOfTransaction, dbo.vPurchaseTotals.DateOfTransaction, 
                         dbo.vPurchaseTotals.SumOfTotalPrice
FROM            dbo.tStore INNER JOIN
                         dbo.tTransaction ON dbo.tStore.StoreID = dbo.tTransaction.StoreID INNER JOIN
                         dbo.vPurchaseTotals ON dbo.tTransaction.TransactionID = dbo.vPurchaseTotals.TransactionID

GO
/****** Object:  View [dbo].[vPurchasesAtStore]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vPurchasesAtStore]
AS
SELECT        TOP (100) PERCENT dbo.tTransaction.TransactionID, dbo.tStore.Store, dbo.tStore.StoreNumber, dbo.tStore.State, dbo.vPurchaseTotals.SumOfTotalPrice, 
                         dbo.vPurchaseTotals.TimeOfTransaction
FROM            dbo.tStore INNER JOIN
                         dbo.tTransaction ON dbo.tStore.StoreID = dbo.tTransaction.StoreID INNER JOIN
                         dbo.vPurchaseTotals ON dbo.tTransaction.TransactionID = dbo.vPurchaseTotals.TransactionID
ORDER BY dbo.tStore.State

GO
/****** Object:  View [dbo].[vStoreStatusThatIsClosedButNotClosedForever]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vStoreStatusThatIsClosedButNotClosedForever]
AS
SELECT        StoreStatusID, IsOpenForBusiness, IsClosedForever
FROM            dbo.tStoreStatus
WHERE        (IsOpenForBusiness = 0) AND (IsClosedForever = 0)

GO
/****** Object:  View [dbo].[vStoresNotClosedForever]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vStoresNotClosedForever]
AS
SELECT        dbo.tStore.StoreID, MAX(dbo.tStoreHistory.StartDate) AS Expr1
FROM            dbo.tStore INNER JOIN
                         dbo.tStoreHistory ON dbo.tStore.StoreID = dbo.tStoreHistory.StoreID INNER JOIN
                         dbo.vStoreStatusThatIsClosedButNotClosedForever ON dbo.tStoreHistory.StoreStatusID = dbo.vStoreStatusThatIsClosedButNotClosedForever.StoreStatusID
WHERE        (dbo.vStoreStatusThatIsClosedButNotClosedForever.IsClosedForever = 0)
GROUP BY dbo.tStore.StoreID

GO
/****** Object:  View [dbo].[vTopSpendingLoyaltyNumber]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vTopSpendingLoyaltyNumber]
AS
SELECT        TOP (1) dbo.tLoyalty.LoyaltyNumber, dbo.tTransactionDetail.TotalPrice, dbo.tLoyalty.LoyaltyID
FROM            dbo.tTransaction INNER JOIN
                         dbo.tTransactionDetail ON dbo.tTransaction.TransactionID = dbo.tTransactionDetail.TransactionID INNER JOIN
                         dbo.tLoyalty ON dbo.tTransaction.LoyaltyID = dbo.tLoyalty.LoyaltyID
ORDER BY dbo.tTransactionDetail.TotalPrice DESC

GO
/****** Object:  View [dbo].[vAllTransactionsOfTopSpendingLoyaltyNumber]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vAllTransactionsOfTopSpendingLoyaltyNumber]
AS
SELECT        dbo.vTopSpendingLoyaltyNumber.LoyaltyNumber, dbo.tTransactionDetail.TotalPrice AS Expr1, dbo.tTransactionDetail.QtyOfProduct AS Expr2
FROM            dbo.tTransaction INNER JOIN
                         dbo.tTransactionDetail ON dbo.tTransaction.TransactionID = dbo.tTransactionDetail.TransactionID INNER JOIN
                         dbo.vTopSpendingLoyaltyNumber ON dbo.tTransaction.LoyaltyID = dbo.vTopSpendingLoyaltyNumber.LoyaltyID

GO
/****** Object:  View [dbo].[vEmplMostCurrentStatusDateChange]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vEmplMostCurrentStatusDateChange]
AS
SELECT        EmplID, MAX(StartDate) AS MostCurrentStatusDateChange
FROM            dbo.tEmplHistory
GROUP BY EmplID

GO
/****** Object:  View [dbo].[vEmplCountWhoAreCurrentlyEmployedByStore]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vEmplCountWhoAreCurrentlyEmployedByStore]
AS
SELECT        dbo.tStore.StoreID, dbo.tStore.Store, COUNT(dbo.tEmpl.Empl) AS TotalEmployeesWhoAreEmployed
FROM            dbo.vEmplMostCurrentStatusDateChange INNER JOIN
                         dbo.tStore INNER JOIN
                         dbo.tEmpl ON dbo.tStore.StoreID = dbo.tEmpl.StoreID ON dbo.vEmplMostCurrentStatusDateChange.EmplID = dbo.tEmpl.EmplID INNER JOIN
                         dbo.tEmplStatus INNER JOIN
                         dbo.tEmplHistory ON dbo.tEmplStatus.EmplStatusID = dbo.tEmplHistory.EmplStatusID ON 
                         dbo.vEmplMostCurrentStatusDateChange.EmplID = dbo.tEmplHistory.EmplID AND 
                         dbo.vEmplMostCurrentStatusDateChange.MostCurrentStatusDateChange = dbo.tEmplHistory.StartDate
WHERE        (dbo.tEmplStatus.IsEmployed = 1)
GROUP BY dbo.tStore.StoreID, dbo.tStore.Store

GO
/****** Object:  View [dbo].[vCurrentStoreStatusForAllStores_Step1]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vCurrentStoreStatusForAllStores_Step1]
AS
SELECT        StoreID, MAX(StartDate) AS DateOfLastStatusChange
FROM            dbo.tStoreHistory
GROUP BY StoreID

GO
/****** Object:  View [dbo].[vCurrentStoreStatusForAllStores]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vCurrentStoreStatusForAllStores]
AS
SELECT        TOP (100) PERCENT dbo.vCurrentStoreStatusForAllStores_Step1.StoreID, dbo.vCurrentStoreStatusForAllStores_Step1.DateOfLastStatusChange, 
                         dbo.tStoreStatus.StoreStatus, dbo.tStoreStatus.IsOpenForBusiness, dbo.tStoreStatus.IsClosedForever, dbo.tStoreStatus.StoreStatusID, 
                         RTRIM(LTRIM(dbo.tStore.Store)) AS myStore
FROM            dbo.tStoreHistory INNER JOIN
                         dbo.tStoreStatus ON dbo.tStoreHistory.StoreStatusID = dbo.tStoreStatus.StoreStatusID INNER JOIN
                         dbo.vCurrentStoreStatusForAllStores_Step1 ON dbo.tStoreHistory.StoreID = dbo.vCurrentStoreStatusForAllStores_Step1.StoreID AND 
                         dbo.tStoreHistory.StartDate = dbo.vCurrentStoreStatusForAllStores_Step1.DateOfLastStatusChange INNER JOIN
                         dbo.tStore ON dbo.tStoreHistory.StoreID = dbo.tStore.StoreID
ORDER BY dbo.vCurrentStoreStatusForAllStores_Step1.StoreID

GO
/****** Object:  UserDefinedFunction [dbo].[fEmplStatusOnASpecificDate]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	
-- =============================================
CREATE FUNCTION [dbo].[fEmplStatusOnASpecificDate]
(	
	@myDate as DateTime
)
RETURNS TABLE 
AS
RETURN 
(
	select eh.EmplHistoryID, eh.EmplID, eh.StoreID, eh.EmplStatusID
	from tEmpl e cross apply
     (select top 1 eh.*, StoreID
      from tEmplHistory eh
      where eh.emplid = e.emplid
      and      eh.startDate <= @myDate  -- leave this condition out for the most recent
      order by eh.startDate desc
     ) eh

)

GO
/****** Object:  UserDefinedFunction [dbo].[fEmplWhoCanWorkOnASpecificDate]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	
-- =============================================
CREATE FUNCTION [dbo].[fEmplWhoCanWorkOnASpecificDate]
(	
	@myDate as DateTime
)
RETURNS TABLE 
AS
RETURN 
(
	select F.*, S.CanWork from fEmplStatusOnASpecificDate(@MyDate) as F inner Join tEmplStatus as S on F.emplStatusID = S.emplStatusID Where S.CanWork <> 0
)

GO
/****** Object:  UserDefinedFunction [dbo].[fEmplWhoCanWorkOnASpecificDateAtASpecificStore]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	
-- =============================================
Create FUNCTION [dbo].[fEmplWhoCanWorkOnASpecificDateAtASpecificStore]
(	
	@myDate as DateTime, 
	@storeID as Int
)
RETURNS TABLE 
AS
RETURN 
(
	select F.*, S.CanWork from fEmplStatusOnASpecificDate(@MyDate) as F inner Join tEmplStatus as S on F.emplStatusID = S.emplStatusID Where S.CanWork <> 0 AND F.StoreID = @StoreID
)

GO
/****** Object:  UserDefinedFunction [dbo].[fEmployeesWhoCanBeAStoreManager]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE FUNCTION [dbo].[fEmployeesWhoCanBeAStoreManager] 
(	
)
RETURNS TABLE 
AS
RETURN 
(
	SELECT EmplID, Empl, firstName, lastName from tEmpl Inner Join tEmplTitle ON tEmpl.EmplTitleID = tEmplTitle.EmplTitleID WHERE tEmplTitle.IsStoreManager = 1 
)

GO
/****** Object:  UserDefinedFunction [dbo].[fGetCurrentEmplStatus]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE FUNCTION [dbo].[fGetCurrentEmplStatus] 
(	
	@EmplID int
)
RETURNS TABLE 
AS
RETURN 
(
	SELECT  TOP 1 dbo.tEmplHistory.EmplID AS EmplID, 
	         dbo.tEmplHistory.StartDate AS StartDate, 
			 dbo.tEmplStatus.EmplStatus AS EmplStatus, 
			 dbo.tEmplStatus.CanWork AS CanWork, 
			 dbo.tEmplStatus.IsEmployed AS IsEmployed
	FROM     dbo.tEmplHistory INNER JOIN dbo.tEmplStatus ON dbo.tEmplHistory.EmplStatusID = dbo.tEmplStatus.EmplStatusID
	WHERE   (dbo.tEmplHistory.EmplID = @EmplID)
	ORDER BY startDate Desc
)

GO
/****** Object:  UserDefinedFunction [dbo].[fGetCurrentEmplStatusByDateTime]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	Look the status of an employee for a given date/time.
-- =============================================
CREATE FUNCTION [dbo].[fGetCurrentEmplStatusByDateTime] 
(	
	@EmplID int,
	@myDateTime DateTime
)
RETURNS TABLE 
AS
RETURN 
(
	SELECT  TOP 1 dbo.tEmplHistory.EmplID AS EmplID, 
	         dbo.tEmplHistory.StartDate AS StartDate, 
			 dbo.tEmplStatus.EmplStatus AS EmplStatus, 
			 dbo.tEmplStatus.CanWork AS CanWork, 
			 dbo.tEmplStatus.IsEmployed AS IsEmployed
	FROM     dbo.tEmplHistory INNER JOIN dbo.tEmplStatus ON dbo.tEmplHistory.EmplStatusID = dbo.tEmplStatus.EmplStatusID
	WHERE   (dbo.tEmplHistory.EmplID = @EmplID) AND (dbo.tEmplHistory.StartDate < @myDateTime)
	ORDER BY startDate Desc
)

GO
/****** Object:  UserDefinedFunction [dbo].[fGetCurrentEmplStatusForAllEmpl]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	Get the employee status (Can Work, etc.) for all employees on file
-- =============================================
CREATE FUNCTION [dbo].[fGetCurrentEmplStatusForAllEmpl] 
(	)
RETURNS TABLE 
AS
RETURN 
(
	SELECT TOP (100) PERCENT dbo.tEmplHistory.EmplID, MAX(dbo.tEmplHistory.StartDate) AS StartDate, dbo.tEmplStatus.EmplStatus, dbo.tEmplStatus.CanWork, dbo.tEmplStatus.IsEmployed, IsPermanent, tEmplHistory.EmplStatusID
	FROM	 dbo.tEmplHistory INNER JOIN dbo.tEmplStatus ON dbo.tEmplHistory.EmplStatusID = dbo.tEmplStatus.EmplStatusID
	GROUP BY dbo.tEmplHistory.EmplID, dbo.tEmplStatus.EmplStatus, dbo.tEmplStatus.CanWork, dbo.tEmplStatus.IsEmployed, IsPermanent, tEmplHistory.EmplStatusID
	ORDER BY dbo.tEmplHistory.EmplID DESC
)

GO
/****** Object:  UserDefinedFunction [dbo].[fGetCurrentStoreStatus]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE FUNCTION [dbo].[fGetCurrentStoreStatus] 
(	
	@StoreID int
)
RETURNS TABLE 
AS
RETURN 
(
--			 Columns are zero-based when you read from the DataReader object in the C# Code
	SELECT   dbo.tStoreHistory.StoreID AS StoreID, 
	         MAX(dbo.tStoreHistory.StartDate) AS StartDate, 
			 dbo.tStoreStatus.StoreStatus AS StoreStatus, 
			 dbo.tStoreStatus.IsOpenForBusiness AS IsopenForBusiness, 
			 dbo.tStoreStatus.IsClosedForever AS IsClosedForever
	FROM     dbo.tStoreHistory INNER JOIN dbo.tStoreStatus ON dbo.tStoreHistory.StoreStatusID = dbo.tStoreStatus.StoreStatusID
	GROUP BY dbo.tStoreHistory.StoreID, dbo.tStoreStatus.StoreStatus, dbo.tStoreStatus.IsOpenForBusiness, dbo.tStoreStatus.IsClosedForever
	HAVING   (dbo.tStoreHistory.StoreID = @StoreID)
)

GO
/****** Object:  UserDefinedFunction [dbo].[fGetEmplStatus_CanWork]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE FUNCTION [dbo].[fGetEmplStatus_CanWork]
(	)
RETURNS TABLE
AS
RETURN
(
	SELECT  TOP 1 dbo.tEmplStatus.EmplStatusID AS EmplStatusID
	FROM    dbo.tEmplStatus 
	WHERE   (dbo.tEmplStatus.CanWork = 1)
)
GO
/****** Object:  UserDefinedFunction [dbo].[fGetProductInfoForDisplay]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	Look up product info according to a text string that might be in name, manufacturer, brand, description, or product ID
-- =============================================
CREATE FUNCTION [dbo].[fGetProductInfoForDisplay]
(
	-- Anything the user wants to look for
	@ProductInfo as nchar(500)
)
RETURNS TABLE

AS
	return 
		SELECT       rtrim(ltrim(Cast(tProduct.ProductID as nchar)))  
		             + ': ' + ltrim(rtrim(dbo.tManufacturer.Manufacturer)) 
					 + ': ' + ltrim(rtrim(Brand)) 
					 + ': ' + ltrim(rtrim(Description))
					 + ': ' + Name as foo
        FROM             dbo.tProduct LEFT OUTER JOIN
                         dbo.tBrand ON dbo.tProduct.BrandID = dbo.tBrand.BrandID LEFT OUTER JOIN
                         dbo.tName ON dbo.tProduct.NameID = dbo.tName.NameID LEFT OUTER JOIN
                         dbo.tManufacturer ON dbo.tProduct.ManufacturerID = dbo.tManufacturer.ManufacturerID
        WHERE        
					 (rtrim(ltrim(dbo.tManufacturer.Manufacturer)) LIKE N'%'+rtrim(ltrim(@ProductInfo))+'%') OR
					 (rtrim(ltrim(dbo.tName.Name))                 LIKE N'%'+rtrim(ltrim(@ProductInfo))+'%') OR
					 (rtrim(ltrim(dbo.tBrand.Brand))               LIKE N'%'+rtrim(ltrim(@ProductInfo))+'%') OR
					 (rtrim(ltrim(dbo.tProduct.Description))       LIKE N'%' + rtrim(ltrim(@ProductInfo)) + '%') OR
					 (rtrim(ltrim(CAST(dbo.tProduct.ProductID as nchar))) = @ProductInfo)

GO
/****** Object:  UserDefinedFunction [dbo].[fGetProductInfoForDisplayByProductID]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
Create FUNCTION [dbo].[fGetProductInfoForDisplayByProductID]
(
	-- Anything the user wants to look for
	@ProductID as int
)
RETURNS TABLE

AS
	return 
		SELECT       rtrim(ltrim(Cast(tProduct.ProductID as nchar)))  
		             + ': ' + ltrim(rtrim(dbo.tManufacturer.Manufacturer)) 
					 + ': ' + ltrim(rtrim(Brand)) 
					 + ': ' + ltrim(rtrim(Description))
					 + ': ' + Name as foo
        FROM             dbo.tProduct LEFT OUTER JOIN
                         dbo.tBrand ON dbo.tProduct.BrandID = dbo.tBrand.BrandID LEFT OUTER JOIN
                         dbo.tName ON dbo.tProduct.NameID = dbo.tName.NameID LEFT OUTER JOIN
                         dbo.tManufacturer ON dbo.tProduct.ManufacturerID = dbo.tManufacturer.ManufacturerID
        WHERE        
					 ProductID = @ProductID

GO
/****** Object:  UserDefinedFunction [dbo].[fGetStoreInfo]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson nicholdw@ucmail.uc.edu
-- Description:	Retreive all the info about a coupon
-- =============================================
CREATE  FUNCTION [dbo].[fGetStoreInfo] 
(	
	@Store varchar(100)
)
RETURNS TABLE 
AS
RETURN 
(
	-- Add the SELECT statement with parameter references here
	SELECT * from tStore WHERE Store=@Store
)

GO
/****** Object:  UserDefinedFunction [dbo].[zzzSQLInjection]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE FUNCTION [dbo].[zzzSQLInjection]
(	
	@Store char(100)
)
RETURNS TABLE 
AS
RETURN 
(
	-- Select Store from tStore where StoreID = 2   (select * from tStore)
	Select Store from tStore where Store = @Store
)

GO
/****** Object:  View [dbo].[v1]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[v1]
AS
SELECT        TOP (100) PERCENT dbo.tStoreHistory.StoreID, MAX(dbo.tStoreHistory.StartDate) AS Expr1
FROM            dbo.tStoreHistory INNER JOIN
                         dbo.tStore ON dbo.tStoreHistory.StoreID = dbo.tStore.StoreID
GROUP BY dbo.tStoreHistory.StoreID

GO
/****** Object:  View [dbo].[vCountOfTransactionsByStoreAndLoyalty]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vCountOfTransactionsByStoreAndLoyalty]
AS
SELECT        TOP (100) PERCENT dbo.tStore.StoreID, dbo.tStore.Store, dbo.tLoyalty.LoyaltyNumber, COUNT(dbo.tTransaction.TransactionID) AS CountOfTransactions
FROM            dbo.tTransaction LEFT OUTER JOIN
                         dbo.tLoyalty ON dbo.tTransaction.LoyaltyID = dbo.tLoyalty.LoyaltyID RIGHT OUTER JOIN
                         dbo.tStore ON dbo.tTransaction.StoreID = dbo.tStore.StoreID
GROUP BY dbo.tStore.StoreID, dbo.tStore.Store, dbo.tLoyalty.LoyaltyNumber
ORDER BY CountOfTransactions DESC, dbo.tStore.Store

GO
/****** Object:  View [dbo].[vCouponsCurrentlyOpen]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vCouponsCurrentlyOpen]
AS
SELECT        CouponID, Coupon, Description, CouponSourceID, StartDate, ThroughDate
FROM            dbo.tCoupon
WHERE        ({ fn NOW() } BETWEEN StartDate AND ThroughDate)

GO
/****** Object:  View [dbo].[vEmpl]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vEmpl]
AS
SELECT        dbo.tEmpl.*
FROM            dbo.tEmpl

GO
/****** Object:  View [dbo].[vEmplDDL]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vEmplDDL]
AS
SELECT        dbo.tEmpl.Empl, dbo.tEmpl.EmplID, dbo.tEmpl.FirstName, dbo.tEmpl.LastName, dbo.tStore.Store, dbo.tStore.Address1, dbo.tEmplTitle.EmplTitle, 
                         RTRIM(LTRIM(dbo.tEmpl.Empl)) + N' ' + LTRIM(RTRIM(dbo.tEmpl.LastName)) + N', ' + LTRIM(RTRIM(dbo.tEmpl.FirstName)) AS Summary
FROM            dbo.tEmpl INNER JOIN
                         dbo.tStore ON dbo.tEmpl.StoreID = dbo.tStore.StoreID INNER JOIN
                         dbo.tEmplTitle ON dbo.tEmpl.EmplTitleID = dbo.tEmplTitle.EmplTitleID

GO
/****** Object:  View [dbo].[vEmplGridViewReadOnly]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vEmplGridViewReadOnly]
AS
SELECT        dbo.tEmpl.Empl, dbo.tEmpl.LastName, dbo.tEmpl.FirstName, dbo.tEmpl.IsSelfScan, dbo.tEmplTitle.EmplTitle, dbo.tStore.Store, dbo.tStore.Address1
FROM            dbo.tEmpl INNER JOIN
                         dbo.tStore ON dbo.tEmpl.StoreID = dbo.tStore.StoreID INNER JOIN
                         dbo.tEmplTitle ON dbo.tEmpl.EmplTitleID = dbo.tEmplTitle.EmplTitleID

GO
/****** Object:  View [dbo].[vEmployeeWhoCanBeAStoreManager]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vEmployeeWhoCanBeAStoreManager]
AS
SELECT        TOP (100) PERCENT dbo.tEmpl.EmplID, dbo.tEmpl.Empl, dbo.tEmpl.LastName, dbo.tEmpl.FirstName
FROM            dbo.tEmpl INNER JOIN
                         dbo.tEmplTitle ON dbo.tEmpl.EmplTitleID = dbo.tEmplTitle.EmplTitleID
WHERE        (dbo.tEmplTitle.IsStoreManager = 1)
ORDER BY dbo.tEmpl.Empl

GO
/****** Object:  View [dbo].[vHourlySalesByCalendarDay]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vHourlySalesByCalendarDay]
AS
SELECT        TOP (100) PERCENT SUM(dbo.tTransactionDetail.TotalPrice) AS TotalPrice, dbo.tTransaction.DateOfTransaction, DATEPART(HOUR, 
                         dbo.tTransaction.TimeOfTransaction) AS Hour
FROM            dbo.tTransactionDetail INNER JOIN
                         dbo.tTransaction ON dbo.tTransactionDetail.TransactionID = dbo.tTransaction.TransactionID INNER JOIN
                         dbo.tTransactionType ON dbo.tTransaction.TransactionTypeID = dbo.tTransactionType.TransactionTypeID
GROUP BY DATEPART(HOUR, dbo.tTransaction.TimeOfTransaction), dbo.tTransaction.DateOfTransaction
ORDER BY dbo.tTransaction.DateOfTransaction DESC, Hour

GO
/****** Object:  View [dbo].[vHourlySalesByCalendarDayGroupedByStore]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vHourlySalesByCalendarDayGroupedByStore]
AS
SELECT        TOP (100) PERCENT SUM(dbo.tTransactionDetail.TotalPrice) AS TotalPrice, dbo.tTransaction.DateOfTransaction, DATEPART(HOUR, 
                         dbo.tTransaction.TimeOfTransaction) AS Hour, dbo.tTransaction.StoreID, dbo.tStore.Store
FROM            dbo.tTransactionDetail INNER JOIN
                         dbo.tTransaction ON dbo.tTransactionDetail.TransactionID = dbo.tTransaction.TransactionID INNER JOIN
                         dbo.tTransactionType ON dbo.tTransaction.TransactionTypeID = dbo.tTransactionType.TransactionTypeID INNER JOIN
                         dbo.tStore ON dbo.tTransaction.StoreID = dbo.tStore.StoreID
GROUP BY DATEPART(HOUR, dbo.tTransaction.TimeOfTransaction), dbo.tTransaction.DateOfTransaction, dbo.tTransaction.StoreID, dbo.tStore.Store
ORDER BY dbo.tTransaction.DateOfTransaction DESC, Hour, dbo.tStore.Store

GO
/****** Object:  View [dbo].[vLoyaltyIDThatHasBroughtTheMostGroceries]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vLoyaltyIDThatHasBroughtTheMostGroceries]
AS
SELECT        dbo.tTransaction.LoyaltyID, SUM(dbo.tTransactionDetail.TotalPrice) AS SumOfTotalPrice
FROM            dbo.tTransactionDetail INNER JOIN
                         dbo.tTransaction ON dbo.tTransactionDetail.TransactionID = dbo.tTransaction.TransactionID INNER JOIN
                         dbo.tTransactionType ON dbo.tTransaction.TransactionTypeID = dbo.tTransactionType.TransactionTypeID
GROUP BY dbo.tTransaction.LoyaltyID

GO
/****** Object:  View [dbo].[vMostExpensiveTransactionsByLoyaltyNumberAndTotalPrice]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vMostExpensiveTransactionsByLoyaltyNumberAndTotalPrice]
AS
SELECT        TOP (100) PERCENT dbo.tLoyalty.LoyaltyNumber, dbo.tTransactionDetail.TotalPrice
FROM            dbo.tTransaction INNER JOIN
                         dbo.tTransactionDetail ON dbo.tTransaction.TransactionID = dbo.tTransactionDetail.TransactionID INNER JOIN
                         dbo.tLoyalty ON dbo.tTransaction.LoyaltyID = dbo.tLoyalty.LoyaltyID
ORDER BY dbo.tTransactionDetail.TotalPrice DESC

GO
/****** Object:  View [dbo].[vNumberOfEachTransactionType]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vNumberOfEachTransactionType]
AS
SELECT        TOP (100) PERCENT dbo.tTransactionType.TransactionType, COUNT(dbo.tTransaction.TransactionID) AS Expr1
FROM            dbo.tTransactionType INNER JOIN
                         dbo.tTransaction ON dbo.tTransactionType.TransactionTypeID = dbo.tTransaction.TransactionTypeID
GROUP BY dbo.tTransactionType.TransactionType
ORDER BY Expr1 DESC

GO
/****** Object:  View [dbo].[vProductDDL]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vProductDDL]
AS
SELECT        TOP (100) PERCENT dbo.tProduct.ProductID, dbo.tProduct.Description, dbo.tName.Name
FROM            dbo.tProduct LEFT OUTER JOIN
                         dbo.tName ON dbo.tProduct.NameID = dbo.tName.NameID
WHERE        (dbo.tProduct.Description <> N'')
ORDER BY dbo.tProduct.Description

GO
/****** Object:  View [dbo].[vProductInfo]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vProductInfo]
AS
SELECT        dbo.tName.Name, dbo.tContainer.Container, dbo.tManufacturer.Manufacturer, dbo.tProduct.BrandID, dbo.tBrand.Brand, dbo.tProduct.ProductID, 
                         dbo.tProduct.Description, dbo.tProduct.Calories
FROM            dbo.tContainer INNER JOIN
                         dbo.tProduct ON dbo.tContainer.ContainerID = dbo.tProduct.ContainerID INNER JOIN
                         dbo.tManufacturer ON dbo.tProduct.ManufacturerID = dbo.tManufacturer.ManufacturerID INNER JOIN
                         dbo.tName ON dbo.tProduct.NameID = dbo.tName.NameID INNER JOIN
                         dbo.tBrand ON dbo.tProduct.BrandID = dbo.tBrand.BrandID

GO
/****** Object:  View [dbo].[vProductRpt]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vProductRpt]
AS
SELECT        TOP (100) PERCENT dbo.tProduct.Description, dbo.tManufacturer.Manufacturer
FROM            dbo.tProduct LEFT OUTER JOIN
                         dbo.tManufacturer ON dbo.tProduct.ManufacturerID = dbo.tManufacturer.ManufacturerID
WHERE        (NOT (dbo.tProduct.Description IS NULL) AND dbo.tProduct.Description <> N'')

GO
/****** Object:  View [dbo].[vProductSalesByHours_NonPrime]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vProductSalesByHours_NonPrime]
AS
SELECT        dbo.tProduct.NameID, dbo.tName.Name, dbo.tManufacturer.Manufacturer, dbo.tBrand.Brand, SUM(dbo.tTransactionDetail.QtyOfProduct) AS Qty
FROM            dbo.tProduct INNER JOIN
                         dbo.tTransactionDetail ON dbo.tProduct.ProductID = dbo.tTransactionDetail.ProductID INNER JOIN
                         dbo.tTransaction ON dbo.tTransactionDetail.TransactionID = dbo.tTransaction.TransactionID INNER JOIN
                         dbo.tTransactionType ON dbo.tTransaction.TransactionTypeID = dbo.tTransactionType.TransactionTypeID INNER JOIN
                         dbo.tManufacturer ON dbo.tProduct.ManufacturerID = dbo.tManufacturer.ManufacturerID INNER JOIN
                         dbo.tName ON dbo.tProduct.NameID = dbo.tName.NameID INNER JOIN
                         dbo.tBrand ON dbo.tProduct.BrandID = dbo.tBrand.BrandID
WHERE        (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 1) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 4) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 6) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 8) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 9) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 10) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 12) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 14) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 15) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 16) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 18) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 20) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 21) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 22) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 24) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 0)
GROUP BY dbo.tTransactionType.TransactionTypeID, dbo.tProduct.NameID, dbo.tName.Name, dbo.tManufacturer.Manufacturer, dbo.tBrand.Brand
HAVING        (dbo.tTransactionType.TransactionTypeID = 1)

GO
/****** Object:  View [dbo].[vProductSalesByHours_Prime]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vProductSalesByHours_Prime]
AS
SELECT        dbo.tProduct.NameID, dbo.tName.Name, dbo.tManufacturer.Manufacturer, dbo.tBrand.Brand, SUM(dbo.tTransactionDetail.QtyOfProduct) AS Qty
FROM            dbo.tProduct INNER JOIN
                         dbo.tTransactionDetail ON dbo.tProduct.ProductID = dbo.tTransactionDetail.ProductID INNER JOIN
                         dbo.tTransaction ON dbo.tTransactionDetail.TransactionID = dbo.tTransaction.TransactionID INNER JOIN
                         dbo.tTransactionType ON dbo.tTransaction.TransactionTypeID = dbo.tTransactionType.TransactionTypeID INNER JOIN
                         dbo.tManufacturer ON dbo.tProduct.ManufacturerID = dbo.tManufacturer.ManufacturerID INNER JOIN
                         dbo.tName ON dbo.tProduct.NameID = dbo.tName.NameID INNER JOIN
                         dbo.tBrand ON dbo.tProduct.BrandID = dbo.tBrand.BrandID
WHERE        (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 2) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 3) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 5) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 7) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 11) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 13) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 17) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 19) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 23) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 27) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 29) OR
                         (DATEPART(hour, dbo.tTransaction.TimeOfTransaction) = 31)
GROUP BY dbo.tTransactionType.TransactionTypeID, dbo.tProduct.NameID, dbo.tName.Name, dbo.tManufacturer.Manufacturer, dbo.tBrand.Brand
HAVING        (dbo.tTransactionType.TransactionTypeID = 1)

GO
/****** Object:  View [dbo].[vProductsWithNoCoupons]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vProductsWithNoCoupons]
AS
SELECT     dbo.tProduct.ProductID, dbo.tName.Name, dbo.tManufacturer.Manufacturer, dbo.tProduct.Description, dbo.tCouponDetail.CouponDetailID AS Expr1
FROM         dbo.tCoupon RIGHT OUTER JOIN
                      dbo.tCouponDetail ON dbo.tCoupon.CouponID = dbo.tCouponDetail.CouponID RIGHT OUTER JOIN
                      dbo.tTransactionDetail ON dbo.tCouponDetail.CouponDetailID = dbo.tTransactionDetail.CouponDetailID RIGHT OUTER JOIN
                      dbo.tName RIGHT OUTER JOIN
                      dbo.tProduct ON dbo.tName.NameID = dbo.tProduct.NameID LEFT OUTER JOIN
                      dbo.tManufacturer ON dbo.tProduct.ManufacturerID = dbo.tManufacturer.ManufacturerID ON dbo.tTransactionDetail.ProductID = dbo.tProduct.ProductID
GROUP BY dbo.tProduct.ProductID, dbo.tName.Name, dbo.tManufacturer.Manufacturer, dbo.tProduct.Description, dbo.tCouponDetail.CouponDetailID
HAVING      (dbo.tCouponDetail.CouponDetailID IS NULL)

GO
/****** Object:  View [dbo].[vSam]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vSam]
AS
SELECT        TOP (100) PERCENT COUNT(dbo.tTransactionDetail.QtyOfProduct) AS [Products Sold], LTRIM(RTRIM(dbo.tStore.Store)) AS [Store Name]
FROM            dbo.tStore INNER JOIN
                         dbo.tTransaction ON dbo.tStore.StoreID = dbo.tTransaction.StoreID INNER JOIN
                         dbo.tTransactionDetail ON dbo.tTransaction.TransactionID = dbo.tTransactionDetail.TransactionID
GROUP BY LTRIM(RTRIM(dbo.tStore.Store))
ORDER BY [Products Sold] DESC

GO
/****** Object:  View [dbo].[vStoreStatusTable]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vStoreStatusTable]
AS
SELECT        StoreStatusID, StoreStatus, IsOpenForBusiness, IsClosedForever
FROM            dbo.tStoreStatus

GO
/****** Object:  View [dbo].[vTop10ProductsByQtyOfProduct]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vTop10ProductsByQtyOfProduct]
AS
SELECT        TOP (10) dbo.tTransactionDetail.ProductID, dbo.tProduct.Description, dbo.tName.Name, dbo.tManufacturer.Manufacturer, SUM(dbo.tTransactionDetail.QtyOfProduct) 
                         AS SumOfQtyOfProduct, dbo.tTransaction.TransactionTypeID
FROM            dbo.tTransactionDetail INNER JOIN
                         dbo.tProduct ON dbo.tTransactionDetail.ProductID = dbo.tProduct.ProductID INNER JOIN
                         dbo.tManufacturer ON dbo.tProduct.ManufacturerID = dbo.tManufacturer.ManufacturerID INNER JOIN
                         dbo.tName ON dbo.tProduct.NameID = dbo.tName.NameID INNER JOIN
                         dbo.tTransaction ON dbo.tTransactionDetail.TransactionID = dbo.tTransaction.TransactionID
WHERE        (dbo.tTransaction.TransactionTypeID = 1)
GROUP BY dbo.tTransactionDetail.ProductID, dbo.tProduct.Description, dbo.tName.Name, dbo.tManufacturer.Manufacturer, dbo.tTransaction.TransactionTypeID
ORDER BY SumOfQtyOfProduct DESC

GO
/****** Object:  View [dbo].[vTop15MostLoyalCustomers]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vTop15MostLoyalCustomers]
AS
SELECT        TOP (15) dbo.tLoyalty.LoyaltyID, dbo.tLoyalty.LoyaltyNumber, COUNT(dbo.tTransaction.TransactionID) AS CountOfTransactionID
FROM            dbo.tTransaction INNER JOIN
                         dbo.tLoyalty ON dbo.tTransaction.LoyaltyID = dbo.tLoyalty.LoyaltyID
GROUP BY dbo.tLoyalty.LoyaltyID, dbo.tLoyalty.LoyaltyNumber
ORDER BY CountOfTransactionID DESC

GO
/****** Object:  View [dbo].[vTop5CustomersReceivingRefunds]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vTop5CustomersReceivingRefunds]
AS
SELECT        TOP (5) PERCENT dbo.tLoyalty.LoyaltyNumber, SUM(dbo.tTransactionDetail.TotalPrice) AS Expr1, dbo.tTransactionType.TransactionTypeID
FROM            dbo.tLoyalty INNER JOIN
                         dbo.tTransaction ON dbo.tLoyalty.LoyaltyID = dbo.tTransaction.LoyaltyID INNER JOIN
                         dbo.tTransactionDetail ON dbo.tTransaction.TransactionID = dbo.tTransactionDetail.TransactionID INNER JOIN
                         dbo.tTransactionType ON dbo.tTransaction.TransactionTypeID = dbo.tTransactionType.TransactionTypeID
GROUP BY dbo.tLoyalty.LoyaltyNumber, dbo.tTransactionType.TransactionTypeID
HAVING        (dbo.tTransactionType.TransactionTypeID = 2)
ORDER BY Expr1 DESC

GO
/****** Object:  View [dbo].[vTopProductsByTotalSales]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vTopProductsByTotalSales]
AS
SELECT        TOP (10) SUM(dbo.tTransactionDetail.TotalPrice) AS SumOfTotalPrice, LTRIM(RTRIM(dbo.tBrand.Brand)) 
                         + N', ' + dbo.tName.Name + N' ' + dbo.tProduct.Description + N', ' + dbo.tManufacturer.Manufacturer AS Product
FROM            dbo.tBrand RIGHT OUTER JOIN
                         dbo.tProduct ON dbo.tBrand.BrandID = dbo.tProduct.BrandID LEFT OUTER JOIN
                         dbo.tName ON dbo.tProduct.NameID = dbo.tName.NameID LEFT OUTER JOIN
                         dbo.tManufacturer ON dbo.tProduct.ManufacturerID = dbo.tManufacturer.ManufacturerID RIGHT OUTER JOIN
                         dbo.tTransactionType LEFT OUTER JOIN
                         dbo.tTransaction ON dbo.tTransactionType.TransactionTypeID = dbo.tTransaction.TransactionTypeID LEFT OUTER JOIN
                         dbo.tTransactionDetail ON dbo.tTransaction.TransactionID = dbo.tTransactionDetail.TransactionID ON 
                         dbo.tProduct.ProductID = dbo.tTransactionDetail.ProductID
WHERE        (dbo.tTransactionType.TransactionTypeID = 1)
GROUP BY LTRIM(RTRIM(dbo.tBrand.Brand)) + N', ' + dbo.tName.Name + N' ' + dbo.tProduct.Description + N', ' + dbo.tManufacturer.Manufacturer
ORDER BY SumOfTotalPrice DESC

GO
/****** Object:  View [dbo].[vTopSellingProductByTotalAmount]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vTopSellingProductByTotalAmount]
AS
SELECT        TOP (1) dbo.tProduct.ProductID, dbo.tProduct.Description, dbo.tManufacturer.Manufacturer, dbo.tName.Name, SUM(dbo.tTransactionDetail.TotalPrice) AS Expr1
FROM            dbo.tTransactionDetail INNER JOIN
                         dbo.tTransaction ON dbo.tTransactionDetail.TransactionID = dbo.tTransaction.TransactionID INNER JOIN
                         dbo.tTransactionType ON dbo.tTransaction.TransactionTypeID = dbo.tTransactionType.TransactionTypeID INNER JOIN
                         dbo.tProduct ON dbo.tTransactionDetail.ProductID = dbo.tProduct.ProductID INNER JOIN
                         dbo.tManufacturer ON dbo.tProduct.ManufacturerID = dbo.tManufacturer.ManufacturerID INNER JOIN
                         dbo.tName ON dbo.tProduct.NameID = dbo.tName.NameID
WHERE        (dbo.tTransactionType.TransactionTypeID = 1)
GROUP BY dbo.tProduct.ProductID, dbo.tProduct.Description, dbo.tManufacturer.Manufacturer, dbo.tName.Name
ORDER BY Expr1 DESC

GO
/****** Object:  View [dbo].[vTopToProductsByTotalSales]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vTopToProductsByTotalSales]
AS
SELECT        TOP (10) SUM(dbo.tTransactionDetail.TotalPrice) AS SumOfTotalPrice, LTRIM(RTRIM(dbo.tBrand.Brand)) 
                         + N', ' + dbo.tName.Name + N' ' + dbo.tProduct.Description + N', ' + dbo.tManufacturer.Manufacturer AS Product
FROM            dbo.tBrand RIGHT OUTER JOIN
                         dbo.tProduct ON dbo.tBrand.BrandID = dbo.tProduct.BrandID LEFT OUTER JOIN
                         dbo.tName ON dbo.tProduct.NameID = dbo.tName.NameID LEFT OUTER JOIN
                         dbo.tManufacturer ON dbo.tProduct.ManufacturerID = dbo.tManufacturer.ManufacturerID RIGHT OUTER JOIN
                         dbo.tTransactionType LEFT OUTER JOIN
                         dbo.tTransaction ON dbo.tTransactionType.TransactionTypeID = dbo.tTransaction.TransactionTypeID LEFT OUTER JOIN
                         dbo.tTransactionDetail ON dbo.tTransaction.TransactionID = dbo.tTransactionDetail.TransactionID ON 
                         dbo.tProduct.ProductID = dbo.tTransactionDetail.ProductID
WHERE        (dbo.tTransactionType.TransactionTypeID = 1)
GROUP BY LTRIM(RTRIM(dbo.tBrand.Brand)) + N', ' + dbo.tName.Name + N' ' + dbo.tProduct.Description + N', ' + dbo.tManufacturer.Manufacturer
ORDER BY SumOfTotalPrice DESC

GO
/****** Object:  View [dbo].[vTotalAmountByTransactionType]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vTotalAmountByTransactionType]
AS
SELECT        TOP (100) PERCENT dbo.tTransactionType.TransactionType, SUM(dbo.tTransactionDetail.TotalPrice) AS Expr1
FROM            dbo.tLoyalty INNER JOIN
                         dbo.tTransaction ON dbo.tLoyalty.LoyaltyID = dbo.tTransaction.LoyaltyID INNER JOIN
                         dbo.tTransactionDetail ON dbo.tTransaction.TransactionID = dbo.tTransactionDetail.TransactionID RIGHT OUTER JOIN
                         dbo.tTransactionType ON dbo.tTransaction.TransactionTypeID = dbo.tTransactionType.TransactionTypeID
GROUP BY dbo.tTransactionType.TransactionType
ORDER BY Expr1 DESC

GO
/****** Object:  View [dbo].[vTotalTransactions]    Script Date: 2/5/2017 5:31:32 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[vTotalTransactions]
AS
SELECT        COUNT(TransactionID) AS TotalTransactions
FROM            dbo.tTransaction

GO
SET IDENTITY_INSERT [dbo].[tBrand] ON 

GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (1, N'2-D-Boring                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (2, N'A & B                                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (3, N'Water Panna                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (4, N'Children Bottle Pop                                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (5, N'Cooks & Chefs                                                                                      ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (6, N'Gorilla                                                                                             ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (7, N'Barry Crocker                                                                                       ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (8, N'Big Green                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (9, N'Little Red                                                                                             ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (10, N'Glumetti''s                                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (11, N'Rookbander''s                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (12, N'Borden                                                                                              ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (13, N'Weakstone''s                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (14, N'Brush''s Best                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (15, N'Calbert''s Cupcakes                                                                                  ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (16, N'Crampball''s                                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (17, N'Crampball''s Chunky Healthy Request                                                                   ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (18, N'Crampball''s Select                                                                                   ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (19, N'Crampball''s Select Gold Label                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (20, N'Crampball''s Select Harvest                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (21, N'Crampball''s Select Harvest Garden Recipes                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (22, N'Crampball''s Select Harvest Healthy Request                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (23, N'Cape Cod Dry                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (24, N'Capri Moon                                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (25, N'Charlestone Crews                                                                                    ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (26, N'Blearios                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (27, N'Wheatos                                                                                             ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (28, N'Bleatos Crunchy                                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (29, N'Wheez-It                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (30, N'Wheez-It Grips                                                                                      ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (31, N'Wheez-It Reduced Fat                                                                                ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (32, N'No Choice Ramen                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (33, N'Blassico                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (34, N'Nut-Cola                                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (35, N'Coca-Cola Vanilla                                                                                   ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (36, N'Toffee-mate                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (37, N'Poke Classic                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (38, N'Cantadina                                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (39, N'Wokie Dough Bits                                                                                  ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (40, N'Bowl Noodles                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (41, N'Dairy Pen                                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (42, N'Dinnon                                                                                              ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (43, N'Dinnon Wactivia                                                                                      ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (44, N'Dinnon Wactivia Light                                                                                ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (45, N'Dinnon Light ''n Airy                                                                                 ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (46, N'Danon 7 Benefits                                                                                    ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (47, N'Deerfield Farms                                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (48, N'Shell Monte                                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (49, N'Spentyne Fire                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (50, N'Spentyne Ice                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (51, N'Diet Cola                                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (52, N'Diet Cola Plus                                                                                      ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (53, N'Diet Nurse Prepper                                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (54, N'Diet Papsi                                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (55, N'Diet Papsi Fruit                                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (56, N'Diet Spite One                                                                                    ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (57, N'Sporitos                                                                                             ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (58, N'Sporitos Black Jack                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (59, N'Sporitos Warm Ranch                                                                                ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (60, N'Sporitos Nacho Cheese                                                                                ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (61, N'Double X                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (62, N'Nurse Brown''s                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (63, N'Nurse Prepper                                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (64, N'Duncan Shines                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (65, N'Eating It                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (66, N'Egg-World''s Best                                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (67, N'El Bean                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (68, N'Welements                                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (69, N'Shemeril''s                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (70, N'Flavor Dash                                                                                       ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (71, N'Florida''s Bait                                                                                   ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (72, N'Freak Pak                                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (73, N'Refritos                                                                                              ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (74, N'Refritos Scoops                                                                                       ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (75, N'Garden of Food'                                                                                    ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (76, N'Golden Moon                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (77, N'Oldfish                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (78, N'OK Value                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (79, N'Hatch Select                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (80, N'OK Choice                                                                                      ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (81, N'OK Choice Caf Steamers                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (82, N'OK Choice Complete Selections                                                                  ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (83, N'Wershey''s                                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (84, N'HWrshey''s Kisses                                                                                    ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (85, N'Wershey''s Miniatures                                                                                ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (86, N'Wershey''s Mr. Goodbar                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (87, N'Wershey''s Nuggest                                                                                   ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (88, N'Wershey''s Special Dark                                                                              ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (89, N'Wershey''s Sticks                                                                                    ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (90, N'Wershey''s Symphony                                                                                  ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (91, N'Holmes Smokey                                                                                   ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (92, N'Shunt''s                                                                                              ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (93, N'ABC                                                                                                 ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (94, N'Hack Link''s                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (95, N'Hack Link''s Premium Cuts                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (96, N'Harritos                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (97, N'Jim Bream                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (98, N'Pones                                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (99, N'Punior Caramels                                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (100, N'Punior Mints                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (101, N'Wellogg''s Crispix                                                                                   ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (102, N'Wellogg''s Frosted Flakes                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (103, N'Wellogg''s Organic Raisin Bran                                                                       ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (104, N'Wellogg''s Raisin Bran                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (105, N'Wirkland Signature                                                                                  ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (106, N'Shaft                                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (107, N'Shaft Easy Mac                                                                                      ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (108, N'Loy''s                                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (109, N'Loy''s Kettle Cooked                                                                                 ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (110, N'Loy''s Stax                                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (111, N'Loy''s Wavy                                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (112, N'LouAna                                                                                              ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (113, N'Love''s Country Stores                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (114, N'Maruchan                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (115, N'Maruchan Instant Lunch                                                                              ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (116, N'Minute Maid                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (117, N'Miracle Whip                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (118, N'Miss Vickie''s                                                                                       ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (119, N'Fountain Dew                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (120, N'Fountain Dew MDX                                                                                    ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (121, N'Fountain Dew Supernova                                                                              ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (122, N'Fountain Dew Voltage                                                                                ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (123, N'Multi Grain Chairios                                                                                ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (124, N'Faked Bare Breeze                                                                                   ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (125, N'Festle Buncha Crunch                                                                                ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (126, N'Festle Goobers                                                                                      ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (127, N'Nissin Chow                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (128, N'Nisson Top Ramen                                                                                    ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (129, N'BOS                                                                                                 ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (130, N'Oak Woods                                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (131, N'Doh Boy! Oberto                                                                                      ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (132, N'Old El Bean                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (133, N'Bogie''s                                                                                             ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (134, N'Oscar Marter                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (135, N'Pozarka                                                                                              ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (136, N'Pacific Dust - Costdo                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (137, N'Postorelli                                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (138, N'Papperidge Warm                                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (139, N'Papperidge Warm Goldfish                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (140, N'Papperidge Warm Goldfish Colors                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (141, N'Papperidge Warm Goldfish Flavor Blasted                                                             ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (142, N'Papsi                                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (143, N'Pater Paul Almond Yuk                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (144, N'Libb xtra                                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (145, N'Palgrim''s Bride                                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (146, N'Plinters                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (147, N'Spoinsetia                                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (148, N'Pest Honey Bunches of Oats                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (149, N'Glowerade                                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (150, N'Prego                                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (151, N'Pragreso Light                                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (152, N'Pragreso Traditional                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (153, N'Pragreso Vegetable Classics                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (154, N'Green Bull                                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (155, N'Racos                                                                                               ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (156, N'Reisen                                                                                              ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (157, N'Roertsan''s                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (158, N'Snuffles                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (159, N'Crustlers                                                                                           ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (160, N'Pantitas                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (161, N'Schlepps                                                                                             ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (162, N'Pimply Orange                                                                                       ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (163, N'Glum Jim                                                                                            ')
GO
aINSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (164, N'Sobe                                                                                                ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (165, N'Sabe Courage                                                                                        ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (166, N'Sobe Dragon                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (167, N'Sobe Elixir                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (168, N'Sobe Liz Blizz                                                                                      ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (169, N'Sobe Lizard Lava                                                                                    ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (170, N'Sobe Power                                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (171, N'Sour Punch Straws                                                                                   ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (172, N'South Beach Diet                                                                                    ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (173, N'Sprite                                                                                              ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (174, N'Sprat Zero                                                                                          ') 
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (175, N'Sparkast                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (176, N'Stawart''s Mountain Classics                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (177, N'Moon Chips                                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (178, N'Moonshine Cheez-It                                                                                  ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (179, N'Drab Energy                                                                                         ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (180, N'Paco Bell Home Originals                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (181, N'Postitos                                                                                            ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (182, N'Tridant                                                                                             ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (183, N'Tridant White                                                                                       ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (184, N'Tridant Xtra Care                                                                                   ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (185, N'Weight Watchers                                                                                     ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (186, N'Weight Watchers Smart Ones                                                                          ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (187, N'Yoplait                                                                                             ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (188, N'Zapp''s                                                                                              ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (189, N'Nero                                                                                                ')
GO
INSERT [dbo].[tBrand] ([BrandID], [Brand]) VALUES (190, N'Ploetta')
GO
SET IDENTITY_INSERT [dbo].[tBrand] OFF
GO
SET IDENTITY_INSERT [dbo].[tContainer] ON 

GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (1, N'Bag')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (2, N'Box')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (3, N'Can')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (4, N'Carboard Carton')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (5, N'Cardboard Carton')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (6, N'Cardboard Jug')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (7, N'Carton')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (8, N'Case Pack')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (9, N'Egg Carton')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (10, N'Glass Bottle')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (11, N'Glass Jar')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (12, N'Metal Bottle')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (13, N'Pack')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (14, N'Package')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (15, N'Paper Bag')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (16, N'Paper Cup')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (17, N'Plastic Bag')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (18, N'Plastic Bottle')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (19, N'Plastic Container')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (20, N'Plastic Cup')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (21, N'Plastic Jug')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (22, N'Plastic Strip')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (23, N'Plastic Tray')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (24, N'Plastic Tub')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (25, N'Plastic Wrapper')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (26, N'Resealable Bag')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (27, N'Resealable Case')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (28, N'Resealable Pack')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (29, N'Squeeze Bottle')
GO
INSERT [dbo].[tContainer] ([ContainerID], [Container]) VALUES (30, N'Strip')
GO
SET IDENTITY_INSERT [dbo].[tContainer] OFF
GO
SET IDENTITY_INSERT [dbo].[tCouponSource] ON 

GO
INSERT [dbo].[tCouponSource] ([CouponSourceID], [CouponSource]) VALUES (1, N'Coupon World')
GO
INSERT [dbo].[tCouponSource] ([CouponSourceID], [CouponSource]) VALUES (4, N'Forest Hills Journal')
GO
INSERT [dbo].[tCouponSource] ([CouponSourceID], [CouponSource]) VALUES (2, N'In-Store')
GO
INSERT [dbo].[tCouponSource] ([CouponSourceID], [CouponSource]) VALUES (5, N'Manufacturer')
GO
INSERT [dbo].[tCouponSource] ([CouponSourceID], [CouponSource]) VALUES (7, N'National Public Radio')
GO
INSERT [dbo].[tCouponSource] ([CouponSourceID], [CouponSource]) VALUES (6, N'Penny Saver')
GO
INSERT [dbo].[tCouponSource] ([CouponSourceID], [CouponSource]) VALUES (3, N'United Way')
GO
SET IDENTITY_INSERT [dbo].[tCouponSource] OFF
GO
SET IDENTITY_INSERT [dbo].[tDiscountType] ON 

GO
INSERT [dbo].[tDiscountType] ([DiscountTypeID], [DiscountType], [IsFree], [IsPercentageDiscount], [IsBOGO], [isAmountOff], [IsGiftCard]) VALUES (1, N'Free', 1, 0, 0, 0, 0)
GO
INSERT [dbo].[tDiscountType] ([DiscountTypeID], [DiscountType], [IsFree], [IsPercentageDiscount], [IsBOGO], [isAmountOff], [IsGiftCard]) VALUES (2, N'Percent Off', 0, 1, 0, 0, 0)
GO
INSERT [dbo].[tDiscountType] ([DiscountTypeID], [DiscountType], [IsFree], [IsPercentageDiscount], [IsBOGO], [isAmountOff], [IsGiftCard]) VALUES (3, N'BOGO', 0, 0, 1, 0, 0)
GO
INSERT [dbo].[tDiscountType] ([DiscountTypeID], [DiscountType], [IsFree], [IsPercentageDiscount], [IsBOGO], [isAmountOff], [IsGiftCard]) VALUES (6, N'Amount Off', 0, 0, 0, 1, 0)
GO
INSERT [dbo].[tDiscountType] ([DiscountTypeID], [DiscountType], [IsFree], [IsPercentageDiscount], [IsBOGO], [isAmountOff], [IsGiftCard]) VALUES (7, N'Gift Card', 0, 0, 0, 0, 1)
GO
SET IDENTITY_INSERT [dbo].[tDiscountType] OFF
GO
SET IDENTITY_INSERT [dbo].[tEmpl] ON 

GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3, N'Cheaney             ', N'Cheaney                                                                                             ', N'Calbert                                                                                             ', 11, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4, N'Graham              ', N'Graham                                                                                              ', N'Greg                                                                                                ', 2, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (5, N'Nover               ', N'Nover                                                                                               ', N'Test                                                                                                ', 2, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (6, N'Reynolds            ', N'Prime                                                                                               ', N'Optimus                                                                                             ', 2, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (7, N'Wilkerson           ', N'Wilkerson   Hi                                                                                      ', N'Sherron                                                                                             ', 5, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (9, N'Freedom             ', N'Wallace                                                                                             ', N'William                                                                                             ', 2, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (10, N'Knight              ', N'Knight                                                                                              ', N'Pat                                                                                                 ', 14, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (11, N'GrahamPat           ', N'Graham                                                                                              ', N'Pat                                                                                                 ', 2, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (12, N'Buck                ', N'Buckner                                                                                             ', N'Quinn                                                                                               ', 19, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (13, N'Abernathy           ', N'Abernathy                                                                                           ', N'Mike                                                                                                ', 2, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (16, N'Robertson           ', N'Robertson                                                                                           ', N'Oscar                                                                                               ', 3, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (17, N'RobertsonX          ', N'Robertson                                                                                           ', N'Xavier                                                                                              ', 4, 5, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (18, N'Alford              ', N'Alford                                                                                              ', N'Steve                                                                                               ', 5, 5, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (19, N'Larkin              ', N'Larkin                                                                                              ', N'Barry                                                                                               ', 6, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (21, N'Jordan              ', N'Jordan                                                                                              ', N'Michael                                                                                             ', 7, 3, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (22, N'Conley              ', N'Conley                                                                                              ', N'Mike                                                                                                ', 8, 3, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (25, N'KnightBK            ', N'Knight                                                                                              ', N'Robert                                                                                              ', 28, 3, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (29, N'Self000000          ', N'IAmAware                                                                                            ', N'Scan                                                                                                ', 2, 8, 1, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (30, N'Self000001          ', N'Cool                                                                                                ', N'Scan                                                                                                ', 2, 8, 1, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (31, N'RobertsonP          ', N'Phil                                                                                                ', N'Robertson                                                                                           ', 2, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (36, N'7274668370          ', N'Jakeman                                                                                             ', N'Blair                                                                                               ', 9, 6, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (37, N'8183877766          ', N'Moongaze                                                                                            ', N'Maitland                                                                                            ', 4, 3, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (38, N'AMXOPJX             ', N'Meissner                                                                                            ', N'Alasdair                                                                                            ', 4, 4, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (39, N'PSAKCRG             ', N'Sludge                                                                                              ', N'Pounce                                                                                              ', 6, 4, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (40, N'CSLKUWL             ', N'Scl                                                                                                 ', N'Chickenchaser                                                                                       ', 11, 5, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (42, N'MAY                 ', N'Animal                                                                                              ', N'Morgen                                                                                              ', 6, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (43, N'GQCJYYC             ', N'Quickmoon                                                                                           ', N'Gentlegleam                                                                                         ', 13, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (46, N'Z473281             ', N'Woods                                                                                               ', N'Seth                                                                                                ', NULL, 8, 1, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (47, N'ATGTJKH             ', N'T hirih                                                                                             ', N'Aleksander                                                                                          ', 35, 3, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (48, N'JJQCWVU             ', N'Jacobson                                                                                            ', N'Jellygleam                                                                                          ', 52, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (49, N'GRPWLDB             ', N'Rock                                                                                                ', N'Gentlegleam                                                                                         ', 11, 3, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (50, N'ACYYPOR             ', N'Cyra                                                                                                ', N'Applebreeze                                                                                         ', 11, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (51, N'FEXGYGP             ', N'Error                                                                                               ', N'Flitterstar                                                                                         ', 29, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (52, N'KZWVEPY             ', N'Zuleika                                                                                             ', N'Knut                                                                                                ', 3, 8, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (53, N'GGWWQCX             ', N'Graves                                                                                              ', N'Grapple                                                                                             ', 41, 3, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (54, N'TEMGXCO             ', N'Error                                                                                               ', N'Twinkleberry                                                                                        ', 15, 3, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (55, N'TSHXSAI             ', N'Starbeam                                                                                            ', N'Titania                                                                                             ', 33, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (56, N'SHLWHWW             ', N'Hofmann                                                                                             ', N'Snowdance                                                                                           ', 58, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (57, N'CALHSRT             ', N'Animal                                                                                              ', N'Chickenfarmer                                                                                       ', 64, 8, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (58, N'SANDQAO             ', N'Amsel                                                                                               ', N'Sweetwing                                                                                           ', 14, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (59, N'DMOMBIC             ', N'Miles                                                                                               ', N'Double                                                                                              ', 30, 3, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (60, N'OTAWJVF             ', N'T hirih                                                                                             ', N'Overkill                                                                                            ', 14, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (61, N'SSKQQYH             ', N'Snowfeather                                                                                         ', N'Sheard                                                                                              ', 64, 7, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (62, N'DGMVNYA             ', N'Glittersheen                                                                                        ', N'Daniel                                                                                              ', 2, 5, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (63, N'SMSTYBD             ', N'Moongaze                                                                                            ', N'Sweetstar                                                                                           ', 12, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (64, N'PSUSXLT             ', N'Scavenger                                                                                           ', N'Pollyanna                                                                                           ', 17, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (65, N'JWDAXSQ             ', N'Woods                                                                                               ', N'Jemmy                                                                                               ', 2, 7, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (66, N'KJXFHLK             ', N'Jakeman                                                                                             ', N'Kim                                                                                                 ', 41, 4, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (67, N'JVYCVTA             ', N'Vorath                                                                                              ', N'Jeremiah                                                                                            ', 70, 3, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (68, N'JSCSSYP             ', N'Schuler                                                                                             ', N'Jochim                                                                                              ', 6, 4, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (69, N'QMLWCCC             ', N'McKenzie                                                                                            ', N'Queen                                                                                               ', 20, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (70, N'TAVAIHG             ', N'Alberts                                                                                             ', N'Tasgall                                                                                             ', 33, 4, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (71, N'MNHUGXN             ', N'Nevin                                                                                               ', N'Mooncheeks                                                                                          ', 10, 7, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (72, N'AKOHRAO             ', N'Keith                                                                                               ', N'Arcana                                                                                              ', 33, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (73, N'ZFRHXYP             ', N'Fantine                                                                                             ', N'Za re                                                                                               ', 17, 4, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (74, N'ASKIDOT             ', N'Starbeam                                                                                            ', N'Aloysius                                                                                            ', 19, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (75, N'CTXMSLP             ', N'T hirih                                                                                             ', N'Crush                                                                                               ', 58, 3, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (76, N'SJTJKHS             ', N'Jacobson                                                                                            ', N'Snowdance                                                                                           ', 14, 4, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (77, N'PGDAABS             ', N'Glittercloud                                                                                        ', N'Pollyanna                                                                                           ', 70, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (78, N'TDKKYGN             ', N'Donohoe                                                                                             ', N'Twinkleleaf                                                                                         ', 18, 7, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (79, N'PSVDNDQ             ', N'Simpkin                                                                                             ', N'Powerglide                                                                                          ', 2, 5, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (80, N'TSJLDQA             ', N'Sparklemoon                                                                                         ', N'Titania                                                                                             ', 21, 7, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (81, N'HSATAFV             ', N'Saunders                                                                                            ', N'Herbie                                                                                              ', 38, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (82, N'AKMVYPE             ', N'Keith                                                                                               ', N'Applebreeze                                                                                         ', 40, 6, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (83, N'CVTEERY             ', N'Vorath                                                                                              ', N'Cyra                                                                                                ', 21, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (84, N'LCQHKFG             ', N'Cyra                                                                                                ', N'Lalla                                                                                               ', 5, 4, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (85, N'GMCSLJG             ', N'McRae                                                                                               ', N'Gigglering                                                                                          ', 41, 6, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (86, N'SSPMPQB             ', N'Scourge                                                                                             ', N'Silverfrost                                                                                         ', 38, 8, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (87, N'CSODPYS             ', N'Starscream                                                                                          ', N'C emgein                                                                                            ', 64, 4, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (88, N'AOOVXLA             ', N'Optimus                                                                                             ', N'Applebreeze                                                                                         ', 20, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (89, N'SNDOJFJ             ', N'Nye                                                                                                 ', N'Sean                                                                                                ', 4, 8, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (90, N'MSNJCVU             ', N'Sempers                                                                                             ', N'Maitland                                                                                            ', 42, 6, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (91, N'OMWLPTA             ', N'Moongaze                                                                                            ', N'Octane                                                                                              ', 71, 3, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (92, N'LSPMMGE             ', N'Sideswipe                                                                                           ', N'Loyd                                                                                                ', 10, 5, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (93, N'DMCSYGG             ', N'McRae                                                                                               ', N'Dietfried                                                                                           ', 30, 8, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (94, N'PSXGUIN             ', N'Schuler                                                                                             ', N'Pollyanna                                                                                           ', 38, 8, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (95, N'WCHWGBD             ', N'Clarkson                                                                                            ', N'Wingspan                                                                                            ', 21, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (96, N'HPVWODA             ', N'Payton                                                                                              ', N'Herbie                                                                                              ', 18, 7, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (97, N'PFRRNMI             ', N'Force                                                                                               ', N'Perceptor                                                                                           ', 3, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (98, N'FREDVMG             ', N'Rock                                                                                                ', N'Forest                                                                                              ', 10, 5, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (99, N'THGWTKI             ', N'Hawking                                                                                             ', N'Twinkleleaf                                                                                         ', 8, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (100, N'ADXVOXR             ', N'Dazzlegaze                                                                                          ', N'Applebreeze                                                                                         ', 39, 4, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (101, N'GMNJKYX             ', N'McRae                                                                                               ', N'Gumphauler                                                                                          ', 16, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (102, N'RJUVBOG             ', N'Jakeman                                                                                             ', N'Rollo                                                                                               ', 20, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (103, N'GJLQJOH             ', N'Jeffers                                                                                             ', N'Goldstar                                                                                            ', 71, 5, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (104, N'PWSDJDI             ', N'Wheeljack                                                                                           ', N'Powerglide                                                                                          ', 4, 7, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (105, N'SDEUJIM             ', N'Donohoe                                                                                             ', N'Scourge                                                                                             ', 2, 1, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (106, N'AHRIIUU             ', N'Hanley                                                                                              ', N'Arcana                                                                                              ', 41, 5, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (107, N'SBLHIVB             ', N'Blitzwing                                                                                           ', N'Snowdance                                                                                           ', 30, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (108, N'HQCVJAU             ', N'Quickmoon                                                                                           ', N'Herbie                                                                                              ', 15, 2, 0, NULL)
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (109, N'CVHWOSA             ', N'Venom                                                                                               ', N'Crazy                                                                                               ', 29, 8, 0, CAST(N'2016-12-23T06:50:07.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (110, N'PGECLIT             ', N'Glitterfluff                                                                                        ', N'Punch                                                                                               ', 9, 2, 0, CAST(N'2016-12-23T06:50:08.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (111, N'JRMYTQR             ', N'Rock                                                                                                ', N'Jochim                                                                                              ', 15, 3, 0, CAST(N'2016-12-23T06:50:08.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (112, N'QQAIXAF             ', N'Quickmoon                                                                                           ', N'Quickdance                                                                                          ', 3, 3, 0, CAST(N'2016-12-23T06:50:08.483' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (113, N'JRKCYDC             ', N'Rock                                                                                                ', N'Jochim                                                                                              ', 52, 3, 0, CAST(N'2016-12-23T06:50:08.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (114, N'RKABVWF             ', N'Kaisa                                                                                               ', N'Ruairidh                                                                                            ', 12, 8, 0, CAST(N'2016-12-23T06:50:08.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (115, N'DRPPEHE             ', N'Rock                                                                                                ', N'Dirtgreaser                                                                                         ', 35, 1, 0, CAST(N'2016-12-23T06:50:09.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (116, N'BBTDWEH             ', N'Baphomet                                                                                            ', N'Barleyfarmer                                                                                        ', 6, 5, 0, CAST(N'2016-12-23T06:50:09.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (117, N'GMOJWLI             ', N'McKenzie                                                                                            ', N'Goldshy                                                                                             ', 21, 8, 0, CAST(N'2016-12-23T06:50:09.560' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (118, N'UDUDCAE             ', N'Da''ronda                                                                                            ', N'Ultra                                                                                               ', 58, 8, 0, CAST(N'2016-12-23T06:50:09.767' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (119, N'SRKDWYW             ', N'Rock                                                                                                ', N'Scourge                                                                                             ', 64, 2, 0, CAST(N'2016-12-23T06:50:09.977' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (120, N'DDXUSHI             ', N'Dazzlegaze                                                                                          ', N'Double                                                                                              ', 38, 5, 0, CAST(N'2016-12-23T06:50:10.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (121, N'JIQEGFU             ', N'Itzel                                                                                               ', N'Jemmy                                                                                               ', 7, 6, 0, CAST(N'2016-12-23T06:50:10.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (122, N'HVWTXXL             ', N'Viktoria                                                                                            ', N'Highbrow                                                                                            ', 70, 8, 0, CAST(N'2016-12-23T06:50:10.657' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (123, N'LRFPMRC             ', N'Rock                                                                                                ', N'Loyd                                                                                                ', 18, 7, 0, CAST(N'2016-12-23T06:50:10.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (124, N'CFFNTOE             ', N'Fraser                                                                                              ', N'Cyra                                                                                                ', 30, 8, 0, CAST(N'2016-12-23T06:50:11.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (125, N'PJHEHGW             ', N'Jeffers                                                                                             ', N'Phoenix                                                                                             ', 10, 4, 0, CAST(N'2016-12-23T06:50:11.337' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (126, N'ZRQYIVH             ', N'Ranald                                                                                              ', N'Za re                                                                                               ', 41, 2, 0, CAST(N'2016-12-23T06:50:11.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (127, N'FGJXBLW             ', N'Golddust                                                                                            ', N'Fluttersheen                                                                                        ', 4, 3, 0, CAST(N'2016-12-23T06:50:11.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (128, N'VIAHOAW             ', N'Itzel                                                                                               ', N'Viktoria                                                                                            ', 19, 4, 0, CAST(N'2016-12-23T06:50:12.003' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (129, N'FKHXSAI             ', N'Klowee                                                                                              ', N'Flitterstar                                                                                         ', 36, 6, 0, CAST(N'2016-12-23T06:50:12.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (130, N'SDJIFPQ             ', N'Dulcinea                                                                                            ', N'Snowdance                                                                                           ', 13, 5, 0, CAST(N'2016-12-23T06:50:12.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (131, N'TPDVHYI             ', N'Payton                                                                                              ', N'Twinkleleaf                                                                                         ', 42, 1, 0, CAST(N'2016-12-23T06:50:12.640' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (132, N'GSEQCXE             ', N'Schuler                                                                                             ', N'Grapple                                                                                             ', 5, 6, 0, CAST(N'2016-12-23T06:50:12.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (133, N'GQVIPKK             ', N'Quickmoon                                                                                           ', N'Gigglering                                                                                          ', 39, 2, 0, CAST(N'2016-12-23T06:50:13.073' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (134, N'QFQKQYR             ', N'Force                                                                                               ', N'Queen                                                                                               ', 33, 2, 0, CAST(N'2016-12-23T06:50:13.293' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (135, N'DKRHOSL             ', N'Kaisa                                                                                               ', N'Double                                                                                              ', 16, 8, 0, CAST(N'2016-12-23T06:50:13.507' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (136, N'JSKKEOK             ', N'Sherman                                                                                             ', N'Johanna                                                                                             ', 2, 1, 0, CAST(N'2016-12-23T06:50:13.703' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (137, N'GEMRKCE             ', N'Error                                                                                               ', N'Gobnata                                                                                             ', 71, 7, 0, CAST(N'2016-12-23T06:50:13.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (138, N'PPMFXWP             ', N'Potatochaser                                                                                        ', N'Pipaluk                                                                                             ', 17, 6, 0, CAST(N'2016-12-23T06:50:14.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (139, N'PGBCWPW             ', N'Gears                                                                                               ', N'Pollyanna                                                                                           ', 40, 5, 0, CAST(N'2016-12-23T06:50:14.343' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (140, N'WMJCAQA             ', N'Meissner                                                                                            ', N'Wingspan                                                                                            ', 11, 2, 0, CAST(N'2016-12-23T06:50:14.557' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (141, N'RKJODTH             ', N'Kaisa                                                                                               ', N'Riina                                                                                               ', 20, 5, 0, CAST(N'2016-12-23T06:50:14.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (142, N'FQCNTNR             ', N'Quickmoon                                                                                           ', N'Forest                                                                                              ', 28, 8, 0, CAST(N'2016-12-23T06:50:15.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (143, N'ZVKVTVX             ', N'Vorath                                                                                              ', N'Zyanya                                                                                              ', 14, 7, 0, CAST(N'2016-12-23T06:50:15.223' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (144, N'KMXVERY             ', N'Mirjam                                                                                              ', N'Kermit                                                                                              ', 8, 7, 0, CAST(N'2016-12-23T06:50:15.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (145, N'PIALAVB             ', N'Itzel                                                                                               ', N'Perceptor                                                                                           ', 29, 2, 0, CAST(N'2016-12-23T06:50:25.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (146, N'JSVBOWV             ', N'Siiri                                                                                               ', N'Jellygleam                                                                                          ', 9, 1, 0, CAST(N'2016-12-23T06:50:25.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (147, N'QBDGBDG             ', N'Badcock                                                                                             ', N'Quickdance                                                                                          ', 15, 2, 0, CAST(N'2016-12-23T06:50:25.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (148, N'SSCMSWO             ', N'Scourge                                                                                             ', N'Sweetwing                                                                                           ', 3, 3, 0, CAST(N'2016-12-23T06:50:25.997' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (149, N'PSXHOCW             ', N'Sherman                                                                                             ', N'Pollyanna                                                                                           ', 52, 7, 0, CAST(N'2016-12-23T06:50:26.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (150, N'MSPOEBB             ', N'Saunders                                                                                            ', N'Mirjam                                                                                              ', 12, 2, 0, CAST(N'2016-12-23T06:50:26.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (151, N'DPUWEWF             ', N'Payton                                                                                              ', N'Dazzledust                                                                                          ', 35, 4, 0, CAST(N'2016-12-23T06:50:26.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (152, N'ASDYLFK             ', N'Schmid                                                                                              ', N'Almira                                                                                              ', 6, 3, 0, CAST(N'2016-12-23T06:50:26.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (153, N'SGRAJFR             ', N'Glittercloud                                                                                        ', N'Sean                                                                                                ', 21, 4, 0, CAST(N'2016-12-23T06:50:27.047' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (154, N'RAGALMY             ', N'Anthonyson                                                                                          ', N'Rollo                                                                                               ', 58, 8, 0, CAST(N'2016-12-23T06:50:27.277' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (155, N'JFVBBEJ             ', N'Flutternose                                                                                         ', N'Jellygleam                                                                                          ', 64, 4, 0, CAST(N'2016-12-23T06:50:27.483' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (156, N'CKSKEUA             ', N'Kaisa                                                                                               ', N'Corona                                                                                              ', 38, 7, 0, CAST(N'2016-12-23T06:50:27.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (157, N'SRSOESY             ', N'Rock                                                                                                ', N'Scotty                                                                                              ', 7, 2, 0, CAST(N'2016-12-23T06:50:27.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (158, N'LPRQAMX             ', N'Philomel                                                                                            ', N'Lalla                                                                                               ', 70, 6, 0, CAST(N'2016-12-23T06:50:28.127' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (159, N'BNPNPXN             ', N'Nye                                                                                                 ', N'Bertram                                                                                             ', 18, 3, 0, CAST(N'2016-12-23T06:50:28.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (160, N'RMVKAOX             ', N'Moongaze                                                                                            ', N'Rein                                                                                                ', 30, 7, 0, CAST(N'2016-12-23T06:50:28.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (161, N'CAKCCWU             ', N'Amsel                                                                                               ', N'Crazy                                                                                               ', 10, 8, 0, CAST(N'2016-12-23T06:50:28.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (162, N'QGUGLKB             ', N'Gentlemoon                                                                                          ', N'Quickdance                                                                                          ', 41, 7, 0, CAST(N'2016-12-23T06:50:29.033' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (163, N'SSXTBUC             ', N'Sugarkiss                                                                                           ', N'Sacnite                                                                                             ', 4, 7, 0, CAST(N'2016-12-23T06:50:29.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (164, N'ASKCRGD             ', N'Sherman                                                                                             ', N'Almira                                                                                              ', 19, 4, 0, CAST(N'2016-12-23T06:50:29.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (165, N'EPARSSY             ', N'Payton                                                                                              ', N'Everild                                                                                             ', 36, 5, 0, CAST(N'2016-12-23T06:50:29.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (166, N'ANELIFU             ', N'Nita                                                                                                ', N'Aleksandra                                                                                          ', 13, 1, 0, CAST(N'2016-12-23T06:50:29.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (167, N'HMAPYHJ             ', N'Maoilios                                                                                            ', N'Highbrow                                                                                            ', 42, 3, 0, CAST(N'2016-12-23T06:50:30.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (168, N'KAYOCBT             ', N'Age                                                                                                 ', N'Kateri                                                                                              ', 5, 7, 0, CAST(N'2016-12-23T06:50:30.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (169, N'DCXFTMC             ', N'Clarkson                                                                                            ', N'David                                                                                               ', 39, 3, 0, CAST(N'2016-12-23T06:50:30.547' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (170, N'PKQFGQD             ', N'Keith                                                                                               ', N'Perceptor                                                                                           ', 33, 6, 0, CAST(N'2016-12-23T06:50:30.767' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (171, N'TSCRIKV             ', N'Starbeam                                                                                            ', N'Twinkleberry                                                                                        ', 16, 4, 0, CAST(N'2016-12-23T06:50:30.977' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (172, N'DSUDROM             ', N'School                                                                                              ', N'David                                                                                               ', 2, 1, 0, CAST(N'2016-12-23T06:50:31.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (173, N'DAYNMQL             ', N'Alberts                                                                                             ', N'Dietfried                                                                                           ', 71, 8, 0, CAST(N'2016-12-23T06:50:31.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (174, N'BEPHKJJ             ', N'Error                                                                                               ', N'Bertram                                                                                             ', 17, 2, 0, CAST(N'2016-12-23T06:50:31.627' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (175, N'FAVMJHV             ', N'Anthonyson                                                                                          ', N'Fluttersheen                                                                                        ', 40, 3, 0, CAST(N'2016-12-23T06:50:31.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (176, N'MSICREV             ', N'Saunders                                                                                            ', N'Maitland                                                                                            ', 11, 8, 0, CAST(N'2016-12-23T06:50:32.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (177, N'SAFLGID             ', N'Amsel                                                                                               ', N'Sweetstar                                                                                           ', 20, 6, 0, CAST(N'2016-12-23T06:50:32.253' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (178, N'BPUKSNN             ', N'Philomel                                                                                            ', N'Blair                                                                                               ', 28, 8, 0, CAST(N'2016-12-23T06:50:32.463' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (179, N'BQUQRDP             ', N'Quickmoon                                                                                           ', N'Beeatriks                                                                                           ', 14, 4, 0, CAST(N'2016-12-23T06:50:32.687' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (180, N'ANPKLKV             ', N'Nye                                                                                                 ', N'Ayelen                                                                                              ', 8, 6, 0, CAST(N'2016-12-23T06:50:32.893' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (181, N'SIVTGEN             ', N'Itzel                                                                                               ', N'Sweetwing                                                                                           ', 29, 6, 0, CAST(N'2016-12-23T06:50:42.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (182, N'KCDVSCN             ', N'Calfuray                                                                                            ', N'Kim                                                                                                 ', 9, 6, 0, CAST(N'2016-12-23T06:50:42.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (183, N'ASLFQSE             ', N'Simpkin                                                                                             ', N'Ayelen                                                                                              ', 15, 7, 0, CAST(N'2016-12-23T06:50:42.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (184, N'DMFLTVS             ', N'Mirjam                                                                                              ', N'Defensor                                                                                            ', 3, 5, 0, CAST(N'2016-12-23T06:50:43.177' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (185, N'STPVQGG             ', N'Tyrrell                                                                                             ', N'Scotty                                                                                              ', 52, 5, 0, CAST(N'2016-12-23T06:50:43.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (186, N'GKJOYRV             ', N'Kreka                                                                                               ', N'Gentlegleam                                                                                         ', 12, 8, 0, CAST(N'2016-12-23T06:50:43.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (187, N'ABGDOKY             ', N'Breakdown                                                                                           ', N'Ailpein                                                                                             ', 35, 2, 0, CAST(N'2016-12-23T06:50:43.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (188, N'TGCHDFH             ', N'Glittersheen                                                                                        ', N'Twinkleleaf                                                                                         ', 6, 3, 0, CAST(N'2016-12-23T06:50:44.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (189, N'HNKEXBK             ', N'Nevin                                                                                               ', N'Harmony                                                                                             ', 21, 5, 0, CAST(N'2016-12-23T06:50:44.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (190, N'KRUNPVI             ', N'Ranald                                                                                              ', N'Katariina                                                                                           ', 58, 8, 0, CAST(N'2016-12-23T06:50:44.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (191, N'QWPFWLK             ', N'Woods                                                                                               ', N'Queen                                                                                               ', 64, 5, 0, CAST(N'2016-12-23T06:50:44.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (192, N'SRJDGQE             ', N'Rippersnapper                                                                                       ', N'Scotty                                                                                              ', 38, 7, 0, CAST(N'2016-12-23T06:50:44.893' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (193, N'CFMERBC             ', N'Force                                                                                               ', N'Ceallagh                                                                                            ', 7, 2, 0, CAST(N'2016-12-23T06:50:45.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (194, N'BAYFYED             ', N'Allsopp                                                                                             ', N'Blair                                                                                               ', 70, 7, 0, CAST(N'2016-12-23T06:50:45.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (195, N'TLEYTHB             ', N'Leelo                                                                                               ', N'Terje                                                                                               ', 18, 2, 0, CAST(N'2016-12-23T06:50:45.517' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (196, N'SSMDJTA             ', N'Starbeam                                                                                            ', N'Sally                                                                                               ', 30, 3, 0, CAST(N'2016-12-23T06:50:45.730' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (197, N'SJJOCSA             ', N'Jazz                                                                                                ', N'Silverfrost                                                                                         ', 10, 3, 0, CAST(N'2016-12-23T06:50:45.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (198, N'SLJEYMK             ', N'Lashawnda                                                                                           ', N'Sheard                                                                                              ', 41, 3, 0, CAST(N'2016-12-23T06:50:46.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (199, N'SAUEDLU             ', N'Allsopp                                                                                             ', N'Snowdance                                                                                           ', 4, 2, 0, CAST(N'2016-12-23T06:50:46.377' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (200, N'DNSFFRU             ', N'Nita                                                                                                ', N'Dolly-Sue                                                                                           ', 19, 5, 0, CAST(N'2016-12-23T06:50:46.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (201, N'KLRLYKU             ', N'Leavitt                                                                                             ', N'Kadri                                                                                               ', 36, 1, 0, CAST(N'2016-12-23T06:50:46.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (202, N'SKRYRCR             ', N'Keith                                                                                               ', N'Sofia                                                                                               ', 13, 3, 0, CAST(N'2016-12-23T06:50:47.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (203, N'RSFWSXH             ', N'Scourge                                                                                             ', N'Rhino                                                                                               ', 42, 1, 0, CAST(N'2016-12-23T06:50:47.233' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (204, N'AVSQJLD             ', N'Viktoria                                                                                            ', N'Ailpein                                                                                             ', 5, 5, 0, CAST(N'2016-12-23T06:50:47.447' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (205, N'LSDJIBF             ', N'Saunders                                                                                            ', N'Lightspeed                                                                                          ', 39, 8, 0, CAST(N'2016-12-23T06:50:47.667' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (206, N'RBFPMWO             ', N'Baphomet                                                                                            ', N'Ross                                                                                                ', 33, 2, 0, CAST(N'2016-12-23T06:50:47.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (207, N'DCNSDXY             ', N'Cosmicmother                                                                                        ', N'Dietfried                                                                                           ', 16, 1, 0, CAST(N'2016-12-23T06:50:48.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (208, N'CGJGVDC             ', N'Graves                                                                                              ', N'Cyra                                                                                                ', 2, 3, 0, CAST(N'2016-12-23T06:50:48.317' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (209, N'HGCDRSO             ', N'Graves                                                                                              ', N'Harmony                                                                                             ', 71, 5, 0, CAST(N'2016-12-23T06:50:48.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (210, N'KMHUBDJ             ', N'McKenzie                                                                                            ', N'Knut                                                                                                ', 17, 8, 0, CAST(N'2016-12-23T06:50:48.767' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (211, N'AQCFJHU             ', N'Quickmoon                                                                                           ', N'Almira                                                                                              ', 40, 6, 0, CAST(N'2016-12-23T06:50:48.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (212, N'QPDBNDU             ', N'Philomel                                                                                            ', N'Quickdance                                                                                          ', 11, 5, 0, CAST(N'2016-12-23T06:50:49.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (213, N'SMGTDOV             ', N'McRae                                                                                               ', N'Sheard                                                                                              ', 20, 7, 0, CAST(N'2016-12-23T06:50:49.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (214, N'HTDGWVN             ', N'Twinkleeyes                                                                                         ', N'Harmony                                                                                             ', 28, 5, 0, CAST(N'2016-12-23T06:50:49.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (215, N'FATUIYX             ', N'Ally                                                                                                ', N'Forest                                                                                              ', 14, 5, 0, CAST(N'2016-12-23T06:50:49.847' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (216, N'PMODAMC             ', N'Meissner                                                                                            ', N'Piloqutinnguaq                                                                                      ', 8, 3, 0, CAST(N'2016-12-23T06:50:50.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (217, N'OADSGHI             ', N'Albert                                                                                              ', N'Oatchaser                                                                                           ', 29, 2, 0, CAST(N'2016-12-23T06:51:01.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (218, N'AKUIFOC             ', N'Koenig                                                                                              ', N'Almira                                                                                              ', 9, 7, 0, CAST(N'2016-12-23T06:51:01.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (219, N'AVMFAAT             ', N'Vorath                                                                                              ', N'Assassin                                                                                            ', 15, 2, 0, CAST(N'2016-12-23T06:51:01.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (220, N'DMVONCL             ', N'Moongaze                                                                                            ', N'Douglas                                                                                             ', 3, 6, 0, CAST(N'2016-12-23T06:51:02.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (221, N'MCEAGKV             ', N'Cyra                                                                                                ', N'Methoataske                                                                                         ', 52, 7, 0, CAST(N'2016-12-23T06:51:02.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (222, N'RTOVDUY             ', N'Tyrrell                                                                                             ', N'Riina                                                                                               ', 12, 6, 0, CAST(N'2016-12-23T06:51:02.633' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (223, N'TAYDXCM             ', N'Anthonyson                                                                                          ', N'Twinkleberry                                                                                        ', 35, 5, 0, CAST(N'2016-12-23T06:51:02.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (224, N'BIQSWMB             ', N'Itzel                                                                                               ', N'Blair                                                                                               ', 6, 2, 0, CAST(N'2016-12-23T06:51:03.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (225, N'DBCBIGS             ', N'Biceps                                                                                              ', N'Dietfried                                                                                           ', 21, 8, 0, CAST(N'2016-12-23T06:51:03.293' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (226, N'JAMBPWH             ', N'Aylen                                                                                               ', N'Joyce                                                                                               ', 58, 7, 0, CAST(N'2016-12-23T06:51:03.517' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (227, N'QRNBNQU             ', N'Ranald                                                                                              ', N'Queen                                                                                               ', 64, 7, 0, CAST(N'2016-12-23T06:51:03.737' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (228, N'SHHCUXM             ', N'Hanley                                                                                              ', N'Silverfrost                                                                                         ', 38, 7, 0, CAST(N'2016-12-23T06:51:03.947' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (229, N'JJRSKYD             ', N'Jacobson                                                                                            ', N'Jellygleam                                                                                          ', 7, 2, 0, CAST(N'2016-12-23T06:51:04.167' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (230, N'AIHTKBV             ', N'Ibbott                                                                                              ', N'Aurel                                                                                               ', 70, 4, 0, CAST(N'2016-12-23T06:51:04.383' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (231, N'ASYLGOI             ', N'Simpkin                                                                                             ', N'Ailpein                                                                                             ', 18, 1, 0, CAST(N'2016-12-23T06:51:04.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (232, N'TSCNNTS             ', N'Schmid                                                                                              ', N'Twinkleberry                                                                                        ', 30, 5, 0, CAST(N'2016-12-23T06:51:04.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (233, N'PKINXHX             ', N'Kaisa                                                                                               ', N'Peggy-Rae                                                                                           ', 10, 6, 0, CAST(N'2016-12-23T06:51:05.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (234, N'TKRGFHN             ', N'Kaisa                                                                                               ', N'Twinkleberry                                                                                        ', 41, 7, 0, CAST(N'2016-12-23T06:51:05.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (235, N'LTHDJHD             ', N'Tyrrell                                                                                             ', N'Loyd                                                                                                ', 4, 5, 0, CAST(N'2016-12-23T06:51:05.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (236, N'DAMMATT             ', N'Animal                                                                                              ', N'Dazzledust                                                                                          ', 19, 8, 0, CAST(N'2016-12-23T06:51:05.687' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (237, N'TCDRMNT             ', N'Clarkson                                                                                            ', N'Tasgall                                                                                             ', 36, 6, 0, CAST(N'2016-12-23T06:51:05.907' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (238, N'RSXTATA             ', N'Starscream                                                                                          ', N'Rein                                                                                                ', 13, 5, 0, CAST(N'2016-12-23T06:51:06.127' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (239, N'BKKBKJF             ', N'Kaisa                                                                                               ', N'Beeatriks                                                                                           ', 42, 3, 0, CAST(N'2016-12-23T06:51:06.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (240, N'PHTWLIP             ', N'Hanley                                                                                              ', N'Pigplanter                                                                                          ', 5, 4, 0, CAST(N'2016-12-23T06:51:06.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (241, N'DKSTIQY             ', N'Kateri                                                                                              ', N'Dazzledust                                                                                          ', 39, 8, 0, CAST(N'2016-12-23T06:51:06.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (242, N'DKORMKK             ', N'Kaisa                                                                                               ', N'Dietfried                                                                                           ', 33, 7, 0, CAST(N'2016-12-23T06:51:06.983' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (243, N'CMTSLDK             ', N'McRae                                                                                               ', N'Chickenfarmer                                                                                       ', 16, 4, 0, CAST(N'2016-12-23T06:51:07.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (244, N'MLWOENF             ', N'Leavitt                                                                                             ', N'Morgen                                                                                              ', 2, 4, 0, CAST(N'2016-12-23T06:51:07.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (245, N'JKMSBLF             ', N'Koenig                                                                                              ', N'Jellygleam                                                                                          ', 71, 1, 0, CAST(N'2016-12-23T06:51:07.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (246, N'DMOIMQH             ', N'MacClelland                                                                                         ', N'Double                                                                                              ', 17, 3, 0, CAST(N'2016-12-23T06:51:07.847' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (247, N'ASYOIVB             ', N'Sigrid                                                                                              ', N'Ailpein                                                                                             ', 40, 4, 0, CAST(N'2016-12-23T06:51:08.057' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (248, N'JFQAMCH             ', N'Force                                                                                               ', N'Joyce                                                                                               ', 11, 6, 0, CAST(N'2016-12-23T06:51:08.317' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (249, N'UBXIMKP             ', N'Biceps                                                                                              ', N'Ultra                                                                                               ', 20, 8, 0, CAST(N'2016-12-23T06:51:08.527' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (250, N'HHUGHUC             ', N'Hawking                                                                                             ', N'Herbie                                                                                              ', 28, 4, 0, CAST(N'2016-12-23T06:51:08.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (251, N'ANVQQOS             ', N'Nye                                                                                                 ', N'Aleksander                                                                                          ', 14, 8, 0, CAST(N'2016-12-23T06:51:08.933' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (252, N'JKBMBSA             ', N'Kreka                                                                                               ', N'Johanna                                                                                             ', 8, 7, 0, CAST(N'2016-12-23T06:51:09.147' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (253, N'TFDPFOE             ', N'Flutternose                                                                                         ', N'Terje                                                                                               ', 29, 5, 0, CAST(N'2016-12-23T06:51:28.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (254, N'GMUKYTY             ', N'Mirjam                                                                                              ', N'Goldshy                                                                                             ', 9, 2, 0, CAST(N'2016-12-23T06:51:28.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (255, N'HSFEGOV             ', N'Sigrid                                                                                              ', N'Herbie                                                                                              ', 15, 1, 0, CAST(N'2016-12-23T06:51:28.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (256, N'FGRWSFW             ', N'Gears                                                                                               ', N'Flitterstar                                                                                         ', 3, 3, 0, CAST(N'2016-12-23T06:51:28.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (257, N'DBSUHLT             ', N'Blitzwing                                                                                           ', N'Defensor                                                                                            ', 52, 6, 0, CAST(N'2016-12-23T06:51:29.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (258, N'CSHDUCY             ', N'Sempers                                                                                             ', N'Carbry                                                                                              ', 12, 2, 0, CAST(N'2016-12-23T06:51:29.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (259, N'SGINSCP             ', N'Glitterfluff                                                                                        ', N'Sweetwing                                                                                           ', 35, 5, 0, CAST(N'2016-12-23T06:51:29.627' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (260, N'QMBPMQT             ', N'Mirjam                                                                                              ', N'Quickdance                                                                                          ', 6, 5, 0, CAST(N'2016-12-23T06:51:29.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (261, N'AANTJOL             ', N'Alberts                                                                                             ', N'Alfred                                                                                              ', 21, 1, 0, CAST(N'2016-12-23T06:51:30.053' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (262, N'SDMOXNI             ', N'Dulcinea                                                                                            ', N'Silvernose                                                                                          ', 58, 3, 0, CAST(N'2016-12-23T06:51:30.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (263, N'GVPPETF             ', N'Viktoria                                                                                            ', N'Gigglering                                                                                          ', 64, 7, 0, CAST(N'2016-12-23T06:51:30.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (264, N'TDTQIFG             ', N'Donohoe                                                                                             ', N'Tasgall                                                                                             ', 38, 7, 0, CAST(N'2016-12-23T06:51:30.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (265, N'DSISCQG             ', N'Siiri                                                                                               ', N'Defensor                                                                                            ', 7, 1, 0, CAST(N'2016-12-23T06:51:30.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (266, N'AOVMGFB             ', N'Optimus                                                                                             ', N'Ailpein                                                                                             ', 70, 2, 0, CAST(N'2016-12-23T06:51:31.133' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (267, N'SCYTNOR             ', N'Cyra                                                                                                ', N'Scotty                                                                                              ', 18, 4, 0, CAST(N'2016-12-23T06:51:31.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (268, N'BKEGHBO             ', N'Klowee                                                                                              ', N'Blair                                                                                               ', 30, 8, 0, CAST(N'2016-12-23T06:51:31.560' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (269, N'CARYJET             ', N'Age                                                                                                 ', N'Chickenfarmer                                                                                       ', 10, 4, 0, CAST(N'2016-12-23T06:51:31.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (270, N'VBWOOEJ             ', N'Blake                                                                                               ', N'Victor                                                                                              ', 41, 1, 0, CAST(N'2016-12-23T06:51:31.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (271, N'FJISBRS             ', N'Jacobson                                                                                            ', N'Forest                                                                                              ', 4, 2, 0, CAST(N'2016-12-23T06:51:32.203' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (272, N'ARBUXGT             ', N'Roxelana                                                                                            ', N'Aleksandra                                                                                          ', 19, 7, 0, CAST(N'2016-12-23T06:51:32.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (273, N'ASDTYBE             ', N'Saunders                                                                                            ', N'Arlen                                                                                               ', 36, 6, 0, CAST(N'2016-12-23T06:51:32.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (274, N'VZKYWGR             ', N'Zuleika                                                                                             ', N'Victor                                                                                              ', 13, 5, 0, CAST(N'2016-12-23T06:51:32.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (275, N'DBUAFEE             ', N'Biceps                                                                                              ', N'Daniel                                                                                              ', 42, 8, 0, CAST(N'2016-12-23T06:51:33.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (276, N'PJPPTTX             ', N'Jeffers                                                                                             ', N'Punch                                                                                               ', 5, 3, 0, CAST(N'2016-12-23T06:51:33.287' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (277, N'JCOGNJW             ', N'Clarkson                                                                                            ', N'Jemmy                                                                                               ', 39, 6, 0, CAST(N'2016-12-23T06:51:33.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (278, N'DKOUCJU             ', N'Kaisa                                                                                               ', N'Dazzledust                                                                                          ', 33, 6, 0, CAST(N'2016-12-23T06:51:33.730' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (279, N'NPYYPAB             ', N'Payton                                                                                              ', N'Nydia                                                                                               ', 16, 7, 0, CAST(N'2016-12-23T06:51:33.943' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (280, N'CVRQBPJ             ', N'Venom                                                                                               ', N'C emgein                                                                                            ', 2, 4, 0, CAST(N'2016-12-23T06:51:34.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (281, N'VKYLCNL             ', N'Kristiina                                                                                           ', N'Viktoria                                                                                            ', 71, 5, 0, CAST(N'2016-12-23T06:51:34.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (282, N'SJCGTCM             ', N'Julitta                                                                                             ', N'Scourge                                                                                             ', 17, 4, 0, CAST(N'2016-12-23T06:51:34.573' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (283, N'MMONERW             ', N'McNaughton                                                                                          ', N'Marika                                                                                              ', 40, 6, 0, CAST(N'2016-12-23T06:51:34.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (284, N'FUTYKQY             ', N'Ulalume                                                                                             ', N'Forest                                                                                              ', 11, 8, 0, CAST(N'2016-12-23T06:51:34.997' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (285, N'DBYLMBV             ', N'Baphomet                                                                                            ', N'Dirtgreaser                                                                                         ', 20, 6, 0, CAST(N'2016-12-23T06:51:35.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (286, N'RPPPEOK             ', N'Peacespirit                                                                                         ', N'Runabout                                                                                            ', 28, 5, 0, CAST(N'2016-12-23T06:51:35.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (287, N'MPQHNKF             ', N'Prowl                                                                                               ', N'Maimu                                                                                               ', 14, 4, 0, CAST(N'2016-12-23T06:51:35.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (288, N'PBCKGVG             ', N'Breakdown                                                                                           ', N'Pounce                                                                                              ', 8, 2, 0, CAST(N'2016-12-23T06:51:35.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (289, N'SCJTWTQ             ', N'Cyra                                                                                                ', N'Sean                                                                                                ', 29, 1, 0, CAST(N'2016-12-23T06:51:49.827' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (290, N'ASBDUIK             ', N'Studwick                                                                                            ', N'Aloysius                                                                                            ', 9, 3, 0, CAST(N'2016-12-23T06:51:50.043' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (291, N'LZFPXAM             ', N'Zuleika                                                                                             ', N'Lightspeed                                                                                          ', 15, 2, 0, CAST(N'2016-12-23T06:51:50.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (292, N'VOLAQIO             ', N'Ogden                                                                                               ', N'Victor                                                                                              ', 3, 8, 0, CAST(N'2016-12-23T06:51:50.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (293, N'BCEUAMI             ', N'Cyra                                                                                                ', N'Bertram                                                                                             ', 52, 4, 0, CAST(N'2016-12-23T06:51:50.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (294, N'OAJGSIM             ', N'Albert                                                                                              ', N'Overkill                                                                                            ', 12, 2, 0, CAST(N'2016-12-23T06:51:50.897' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (295, N'MFNJHRC             ', N'Force                                                                                               ', N'Mirjam                                                                                              ', 35, 6, 0, CAST(N'2016-12-23T06:51:51.103' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (296, N'DMOSOVU             ', N'Meissner                                                                                            ', N'Douglas                                                                                             ', 6, 2, 0, CAST(N'2016-12-23T06:51:51.317' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (297, N'AMMSHMD             ', N'MacClelland                                                                                         ', N'Aleksander                                                                                          ', 21, 1, 0, CAST(N'2016-12-23T06:51:51.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (298, N'CMNCMNB             ', N'Marcas                                                                                              ', N'Chickenchaser                                                                                       ', 58, 7, 0, CAST(N'2016-12-23T06:51:51.757' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (299, N'BKFLSJT             ', N'Kaisa                                                                                               ', N'Beeatriks                                                                                           ', 64, 5, 0, CAST(N'2016-12-23T06:51:51.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (300, N'PSLNKMO             ', N'Sugarfeather                                                                                        ', N'Potatosower                                                                                         ', 38, 4, 0, CAST(N'2016-12-23T06:51:52.190' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (301, N'KWFAFEN             ', N'Woods                                                                                               ', N'Kerr                                                                                                ', 7, 7, 0, CAST(N'2016-12-23T06:51:52.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (302, N'KMPAQTM             ', N'Moongaze                                                                                            ', N'Knut                                                                                                ', 70, 7, 0, CAST(N'2016-12-23T06:51:52.610' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (303, N'RTUDXRF             ', N'Twinkleeyes                                                                                         ', N'Rhino                                                                                               ', 18, 8, 0, CAST(N'2016-12-23T06:51:52.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (304, N'AAJANDX             ', N'Ally                                                                                                ', N'Applebreeze                                                                                         ', 30, 3, 0, CAST(N'2016-12-23T06:51:53.047' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (305, N'ADPAWXN             ', N'Da''ronda                                                                                            ', N'Aloysius                                                                                            ', 10, 5, 0, CAST(N'2016-12-23T06:51:53.287' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (306, N'GSAQANC             ', N'School                                                                                              ', N'Goldstar                                                                                            ', 41, 8, 0, CAST(N'2016-12-23T06:51:53.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (307, N'FGCNTIS             ', N'Gentlemoon                                                                                          ', N'Fergus                                                                                              ', 4, 7, 0, CAST(N'2016-12-23T06:51:53.733' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (308, N'AACMCJC             ', N'Alberts                                                                                             ', N'Almira                                                                                              ', 19, 3, 0, CAST(N'2016-12-23T06:51:53.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (309, N'KJTWOKS             ', N'Jacobson                                                                                            ', N'Kerr                                                                                                ', 36, 5, 0, CAST(N'2016-12-23T06:51:54.173' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (310, N'HASUWNK             ', N'Anthonyson                                                                                          ', N'Highbrow                                                                                            ', 13, 2, 0, CAST(N'2016-12-23T06:51:54.387' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (311, N'ADDGGBX             ', N'Dazzlegaze                                                                                          ', N'Atomic                                                                                              ', 42, 1, 0, CAST(N'2016-12-23T06:51:54.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (312, N'TSDPORQ             ', N'Schuler                                                                                             ', N'Terje                                                                                               ', 5, 3, 0, CAST(N'2016-12-23T06:51:54.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (313, N'PKBRTFR             ', N'Kristiina                                                                                           ', N'Piloqutinnguaq                                                                                      ', 39, 3, 0, CAST(N'2016-12-23T06:51:55.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (314, N'OTGNBVT             ', N'Twinkleeyes                                                                                         ', N'Oatchaser                                                                                           ', 33, 4, 0, CAST(N'2016-12-23T06:51:55.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (315, N'RJHSYOA             ', N'Julitta                                                                                             ', N'Ruairidh                                                                                            ', 16, 7, 0, CAST(N'2016-12-23T06:51:55.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (316, N'AMLBDOC             ', N'Mirjam                                                                                              ', N'Almira                                                                                              ', 2, 5, 0, CAST(N'2016-12-23T06:51:55.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (317, N'QAUXOXF             ', N'Age                                                                                                 ', N'Queen                                                                                               ', 71, 6, 0, CAST(N'2016-12-23T06:51:56.323' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (318, N'DGBHVCX             ', N'Gears                                                                                               ', N'Daniel                                                                                              ', 17, 8, 0, CAST(N'2016-12-23T06:51:56.560' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (319, N'DAVMRWU             ', N'Andersen                                                                                            ', N'Dietfried                                                                                           ', 40, 2, 0, CAST(N'2016-12-23T06:51:56.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (320, N'PCNRLNL             ', N'Clarkson                                                                                            ', N'Punch                                                                                               ', 11, 2, 0, CAST(N'2016-12-23T06:51:57.067' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (321, N'MKWIMHF             ', N'Kristiina                                                                                           ', N'Methoataske                                                                                         ', 20, 8, 0, CAST(N'2016-12-23T06:51:57.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (322, N'DGXJCGS             ', N'Graves                                                                                              ', N'Devastator                                                                                          ', 28, 8, 0, CAST(N'2016-12-23T06:51:57.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (323, N'CHFXCJK             ', N'Hofmann                                                                                             ', N'Crazy                                                                                               ', 14, 8, 0, CAST(N'2016-12-23T06:51:58.077' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (324, N'KBVNUQL             ', N'Blitzwing                                                                                           ', N'Katariina                                                                                           ', 8, 1, 0, CAST(N'2016-12-23T06:51:58.293' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (325, N'RKSLNQJ             ', N'Klowee                                                                                              ', N'Ruairidh                                                                                            ', 29, 7, 0, CAST(N'2016-12-23T06:52:00.933' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (326, N'PFKIJWM             ', N'Force                                                                                               ', N'Perceptor                                                                                           ', 9, 1, 0, CAST(N'2016-12-23T06:52:01.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (327, N'GSVARXF             ', N'Scavenger                                                                                           ', N'Grapple                                                                                             ', 15, 6, 0, CAST(N'2016-12-23T06:52:01.363' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (328, N'FEABBDK             ', N'Error                                                                                               ', N'Flitterstar                                                                                         ', 3, 4, 0, CAST(N'2016-12-23T06:52:01.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (329, N'SCKBEDQ             ', N'Cosmicmother                                                                                        ', N'Scourge                                                                                             ', 52, 4, 0, CAST(N'2016-12-23T06:52:01.800' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (330, N'APLLUVY             ', N'Prowl                                                                                               ', N'Arnie                                                                                               ', 12, 7, 0, CAST(N'2016-12-23T06:52:02.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (331, N'JRGUGVA             ', N'Ruairi                                                                                              ', N'Jemmy                                                                                               ', 35, 6, 0, CAST(N'2016-12-23T06:52:02.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (332, N'BENGXXX             ', N'Error                                                                                               ', N'Barleyfarmer                                                                                        ', 6, 1, 0, CAST(N'2016-12-23T06:52:02.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (333, N'GGFSIFD             ', N'Griffin                                                                                             ', N'Goldstar                                                                                            ', 21, 1, 0, CAST(N'2016-12-23T06:52:02.683' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (334, N'BGMDCFS             ', N'Graves                                                                                              ', N'Bertram                                                                                             ', 58, 2, 0, CAST(N'2016-12-23T06:52:02.897' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (335, N'SRRNBLP             ', N'Rock                                                                                                ', N'Snowdance                                                                                           ', 64, 6, 0, CAST(N'2016-12-23T06:52:03.103' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (336, N'CKJMNST             ', N'Kristiina                                                                                           ', N'Chickenfarmer                                                                                       ', 38, 3, 0, CAST(N'2016-12-23T06:52:03.313' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (337, N'KJJAQDN             ', N'Julitta                                                                                             ', N'Knut                                                                                                ', 7, 7, 0, CAST(N'2016-12-23T06:52:03.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (338, N'HAFHNTG             ', N'Ally                                                                                                ', N'Harmony                                                                                             ', 70, 3, 0, CAST(N'2016-12-23T06:52:03.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (339, N'PMGSCPC             ', N'McKenzie                                                                                            ', N'Pounce                                                                                              ', 18, 8, 0, CAST(N'2016-12-23T06:52:03.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (340, N'PTQTJTQ             ', N'Twinkleeyes                                                                                         ', N'Peggy-Rae                                                                                           ', 30, 5, 0, CAST(N'2016-12-23T06:52:04.190' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (341, N'DQWNAFX             ', N'Quickleaf                                                                                           ', N'Dirtgreaser                                                                                         ', 10, 6, 0, CAST(N'2016-12-23T06:52:04.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (342, N'SUHOGGF             ', N'Ulalume                                                                                             ', N'Sacnite                                                                                             ', 41, 4, 0, CAST(N'2016-12-23T06:52:04.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (343, N'PPJTXUW             ', N'Philomel                                                                                            ', N'Pigplanter                                                                                          ', 4, 5, 0, CAST(N'2016-12-23T06:52:04.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (344, N'MKJLQBD             ', N'Koenig                                                                                              ', N'Mari                                                                                                ', 19, 8, 0, CAST(N'2016-12-23T06:52:05.047' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (345, N'SKCAULQ             ', N'Kaisa                                                                                               ', N'Sleek                                                                                               ', 36, 2, 0, CAST(N'2016-12-23T06:52:05.257' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (346, N'BSLJNAP             ', N'Starscream                                                                                          ', N'Beeatriks                                                                                           ', 13, 3, 0, CAST(N'2016-12-23T06:52:05.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (347, N'EJRCQLC             ', N'Julitta                                                                                             ', N'Elsdon                                                                                              ', 42, 1, 0, CAST(N'2016-12-23T06:52:05.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (348, N'CKHFLGQ             ', N'Kateri                                                                                              ', N'Crush                                                                                               ', 5, 6, 0, CAST(N'2016-12-23T06:52:05.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (349, N'TOQXCTV             ', N'Ogden                                                                                               ', N'Tasgall                                                                                             ', 39, 8, 0, CAST(N'2016-12-23T06:52:06.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (350, N'MPQJVHY             ', N'Philomel                                                                                            ', N'Mooncheeks                                                                                          ', 33, 8, 0, CAST(N'2016-12-23T06:52:06.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (351, N'PCDQXSA             ', N'Cyra                                                                                                ', N'Piloqutinnguaq                                                                                      ', 16, 1, 0, CAST(N'2016-12-23T06:52:06.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (352, N'SRXESWL             ', N'Ruairi                                                                                              ', N'Silvernose                                                                                          ', 2, 5, 0, CAST(N'2016-12-23T06:52:06.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (353, N'OGJWFSG             ', N'Gears                                                                                               ', N'Overkill                                                                                            ', 71, 4, 0, CAST(N'2016-12-23T06:52:06.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (354, N'TDPAGOT             ', N'Donohoe                                                                                             ', N'Tasgall                                                                                             ', 17, 7, 0, CAST(N'2016-12-23T06:52:07.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (355, N'OBIXWAC             ', N'Breakdown                                                                                           ', N'Overkill                                                                                            ', 40, 2, 0, CAST(N'2016-12-23T06:52:07.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (356, N'EJSSXHE             ', N'Julitta                                                                                             ', N'Elsdon                                                                                              ', 11, 5, 0, CAST(N'2016-12-23T06:52:07.613' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (357, N'KBGJJNC             ', N'Baphomet                                                                                            ', N'Kermit                                                                                              ', 20, 3, 0, CAST(N'2016-12-23T06:52:07.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (358, N'CFMIKYS             ', N'Flutternose                                                                                         ', N'Ceallagh                                                                                            ', 28, 1, 0, CAST(N'2016-12-23T06:52:08.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (359, N'KKKJUYO             ', N'Kateri                                                                                              ', N'Kerr                                                                                                ', 14, 1, 0, CAST(N'2016-12-23T06:52:08.233' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (360, N'VKFHUQA             ', N'Keith                                                                                               ', N'Viktoria                                                                                            ', 8, 6, 0, CAST(N'2016-12-23T06:52:08.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (361, N'AKICKMV             ', N'Keith                                                                                               ', N'Arlen                                                                                               ', 29, 8, 0, CAST(N'2016-12-23T06:52:14.973' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (362, N'GGREPJJ             ', N'Graves                                                                                              ', N'Gentlegleam                                                                                         ', 9, 2, 0, CAST(N'2016-12-23T06:52:15.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (363, N'KBJOEUD             ', N'Blake                                                                                               ', N'Katariina                                                                                           ', 15, 4, 0, CAST(N'2016-12-23T06:52:15.417' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (364, N'PVHWWFU             ', N'Venom                                                                                               ', N'Punch                                                                                               ', 3, 1, 0, CAST(N'2016-12-23T06:52:15.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (365, N'DGJILSO             ', N'Gentlemoon                                                                                          ', N'Devastator                                                                                          ', 52, 2, 0, CAST(N'2016-12-23T06:52:15.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (366, N'RMAKXPN             ', N'Marika                                                                                              ', N'Runabout                                                                                            ', 12, 1, 0, CAST(N'2016-12-23T06:52:16.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (367, N'GJVNYAA             ', N'Julitta                                                                                             ', N'Gears                                                                                               ', 35, 5, 0, CAST(N'2016-12-23T06:52:16.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (368, N'CRHMIME             ', N'Ruairi                                                                                              ', N'Chickenchaser                                                                                       ', 6, 1, 0, CAST(N'2016-12-23T06:52:16.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (369, N'OJCQAYX             ', N'Julitta                                                                                             ', N'Octane                                                                                              ', 21, 7, 0, CAST(N'2016-12-23T06:52:16.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (370, N'LNLRIUQ             ', N'Nita                                                                                                ', N'Lalla                                                                                               ', 58, 4, 0, CAST(N'2016-12-23T06:52:16.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (371, N'PKRJHWE             ', N'Kaisa                                                                                               ', N'Punch                                                                                               ', 64, 3, 0, CAST(N'2016-12-23T06:52:17.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (372, N'AMMMFWA             ', N'Mirjam                                                                                              ', N'Atomic                                                                                              ', 38, 1, 0, CAST(N'2016-12-23T06:52:17.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (373, N'LAMWOFK             ', N'Ally                                                                                                ', N'Lalla                                                                                               ', 7, 5, 0, CAST(N'2016-12-23T06:52:17.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (374, N'DAJLUXW             ', N'Animal                                                                                              ', N'Daniel                                                                                              ', 70, 7, 0, CAST(N'2016-12-23T06:52:17.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (375, N'TMFELTN             ', N'Miles                                                                                               ', N'Terje                                                                                               ', 18, 3, 0, CAST(N'2016-12-23T06:52:17.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (376, N'ALRORGG             ', N'Lashawnda                                                                                           ', N'Arnie                                                                                               ', 30, 2, 0, CAST(N'2016-12-23T06:52:18.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (377, N'APFMXSH             ', N'Pocahontas                                                                                          ', N'Arnie                                                                                               ', 10, 1, 0, CAST(N'2016-12-23T06:52:18.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (378, N'TMBNOJR             ', N'McKenzie                                                                                            ', N'Tasgall                                                                                             ', 41, 2, 0, CAST(N'2016-12-23T06:52:18.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (379, N'WBHRJFH             ', N'Badcock                                                                                             ', N'Wingspan                                                                                            ', 4, 3, 0, CAST(N'2016-12-23T06:52:18.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (380, N'AJWDFQH             ', N'Julitta                                                                                             ', N'Ayelen                                                                                              ', 19, 7, 0, CAST(N'2016-12-23T06:52:19.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (381, N'QOCLWKC             ', N'Optimus                                                                                             ', N'Quickdance                                                                                          ', 36, 4, 0, CAST(N'2016-12-23T06:52:19.270' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (382, N'MMJIWNE             ', N'MacClelland                                                                                         ', N'Marika                                                                                              ', 13, 7, 0, CAST(N'2016-12-23T06:52:19.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (383, N'EVBYEQE             ', N'Venom                                                                                               ', N'Everild                                                                                             ', 42, 3, 0, CAST(N'2016-12-23T06:52:19.703' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (384, N'TPWJFTX             ', N'Peacespirit                                                                                         ', N'Tasgall                                                                                             ', 5, 6, 0, CAST(N'2016-12-23T06:52:19.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (385, N'SNKWPXY             ', N'Nita                                                                                                ', N'Sally                                                                                               ', 39, 4, 0, CAST(N'2016-12-23T06:52:20.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (386, N'SSPJXIT             ', N'Sparklemoon                                                                                         ', N'Scotty                                                                                              ', 33, 1, 0, CAST(N'2016-12-23T06:52:20.327' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (387, N'GBFLHMV             ', N'Baphomet                                                                                            ', N'Grapple                                                                                             ', 16, 3, 0, CAST(N'2016-12-23T06:52:20.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (388, N'AFIOJES             ', N'Fantine                                                                                             ', N'Arcana                                                                                              ', 2, 2, 0, CAST(N'2016-12-23T06:52:20.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (389, N'LVTDASW             ', N'Venom                                                                                               ', N'Lalla                                                                                               ', 71, 8, 0, CAST(N'2016-12-23T06:52:20.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (390, N'HVYNPFJ             ', N'Venom                                                                                               ', N'Harmony                                                                                             ', 17, 5, 0, CAST(N'2016-12-23T06:52:21.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (391, N'CCPWBGK             ', N'Cyra                                                                                                ', N'Crush                                                                                               ', 40, 6, 0, CAST(N'2016-12-23T06:52:21.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (392, N'OGFKPRJ             ', N'Golddust                                                                                            ', N'Overkill                                                                                            ', 11, 3, 0, CAST(N'2016-12-23T06:52:21.660' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (393, N'DKYMNIS             ', N'Koenig                                                                                              ', N'Dazzledust                                                                                          ', 20, 8, 0, CAST(N'2016-12-23T06:52:21.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (394, N'KKUDFTM             ', N'Keith                                                                                               ', N'Kateri                                                                                              ', 28, 2, 0, CAST(N'2016-12-23T06:52:22.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (395, N'CAINSIR             ', N'Animal                                                                                              ', N'Corona                                                                                              ', 14, 5, 0, CAST(N'2016-12-23T06:52:22.353' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (396, N'UDTHDIP             ', N'Dulcinea                                                                                            ', N'Ultra                                                                                               ', 8, 7, 0, CAST(N'2016-12-23T06:52:22.567' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (397, N'FSQLNJJ             ', N'Scourge                                                                                             ', N'Fergus                                                                                              ', 29, 7, 0, CAST(N'2016-12-23T06:52:33.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (398, N'GBYOAPP             ', N'Breakdown                                                                                           ', N'Goldshy                                                                                             ', 9, 6, 0, CAST(N'2016-12-23T06:52:33.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (399, N'PLMVESP             ', N'Leelo                                                                                               ', N'Pipaluk                                                                                             ', 15, 6, 0, CAST(N'2016-12-23T06:52:34.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (400, N'JZSILPQ             ', N'Zuleika                                                                                             ', N'Jeremiah                                                                                            ', 3, 4, 0, CAST(N'2016-12-23T06:52:34.353' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (401, N'AJKARRK             ', N'Jakeman                                                                                             ', N'Arnie                                                                                               ', 52, 3, 0, CAST(N'2016-12-23T06:52:34.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (402, N'LPOWUFB             ', N'Payton                                                                                              ', N'Lightspeed                                                                                          ', 12, 2, 0, CAST(N'2016-12-23T06:52:34.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (403, N'CMFWUTE             ', N'Mirjam                                                                                              ', N'Chickenchaser                                                                                       ', 35, 2, 0, CAST(N'2016-12-23T06:52:35.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (404, N'ASYIXNR             ', N'Sideswipe                                                                                           ', N'Arlen                                                                                               ', 6, 4, 0, CAST(N'2016-12-23T06:52:35.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (405, N'TNCUKUC             ', N'Naira                                                                                               ', N'Titania                                                                                             ', 21, 3, 0, CAST(N'2016-12-23T06:52:35.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (406, N'GRQNHFO             ', N'Rippersnapper                                                                                       ', N'Goldstar                                                                                            ', 58, 3, 0, CAST(N'2016-12-23T06:52:35.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (407, N'GCJPUNI             ', N'Clarkson                                                                                            ', N'Goldshy                                                                                             ', 64, 3, 0, CAST(N'2016-12-23T06:52:35.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (408, N'MAEAEIS             ', N'Anthonyson                                                                                          ', N'Mooncheeks                                                                                          ', 38, 5, 0, CAST(N'2016-12-23T06:52:36.087' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (409, N'CCLJUOD             ', N'Cyra                                                                                                ', N'Clearkiss                                                                                           ', 7, 5, 0, CAST(N'2016-12-23T06:52:36.297' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (410, N'GJBTSNW             ', N'Jacobson                                                                                            ', N'Goldstar                                                                                            ', 70, 8, 0, CAST(N'2016-12-23T06:52:36.527' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (411, N'CSBNLCU             ', N'Siiri                                                                                               ', N'Ceallagh                                                                                            ', 18, 4, 0, CAST(N'2016-12-23T06:52:36.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (412, N'TMDIUSV             ', N'Moongaze                                                                                            ', N'Titania                                                                                             ', 30, 6, 0, CAST(N'2016-12-23T06:52:36.947' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (413, N'DEJULHS             ', N'Error                                                                                               ', N'Dietfried                                                                                           ', 10, 6, 0, CAST(N'2016-12-23T06:52:37.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (414, N'BNHPCFA             ', N'Nita                                                                                                ', N'Barleyfarmer                                                                                        ', 41, 6, 0, CAST(N'2016-12-23T06:52:37.373' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (415, N'CVAINKI             ', N'Venom                                                                                               ', N'Chickenfarmer                                                                                       ', 4, 6, 0, CAST(N'2016-12-23T06:52:37.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (416, N'GESIWCQ             ', N'Error                                                                                               ', N'Goldstar                                                                                            ', 19, 7, 0, CAST(N'2016-12-23T06:52:37.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (417, N'POKTUSI             ', N'Ogden                                                                                               ', N'Pipaluk                                                                                             ', 36, 8, 0, CAST(N'2016-12-23T06:52:38.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (418, N'PKMXHDA             ', N'Kristiina                                                                                           ', N'Piloqutinnguaq                                                                                      ', 13, 5, 0, CAST(N'2016-12-23T06:52:38.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (419, N'MVSXLTK             ', N'Viktoria                                                                                            ', N'Marika                                                                                              ', 42, 1, 0, CAST(N'2016-12-23T06:52:38.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (420, N'WRAEYIN             ', N'Rock                                                                                                ', N'Webster                                                                                             ', 5, 1, 0, CAST(N'2016-12-23T06:52:38.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (421, N'EJPHAQY             ', N'Julitta                                                                                             ', N'Everild                                                                                             ', 39, 4, 0, CAST(N'2016-12-23T06:52:38.887' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (422, N'PFYOIHV             ', N'Fraser                                                                                              ', N'Perceptor                                                                                           ', 33, 7, 0, CAST(N'2016-12-23T06:52:39.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (423, N'SLUPIRJ             ', N'Lashawnda                                                                                           ', N'Sacnite                                                                                             ', 16, 3, 0, CAST(N'2016-12-23T06:52:39.307' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (424, N'ZGVEKES             ', N'Glitterfluff                                                                                        ', N'Za re                                                                                               ', 2, 6, 0, CAST(N'2016-12-23T06:52:39.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (425, N'SBTCYAW             ', N'Blake                                                                                               ', N'Silvernose                                                                                          ', 71, 1, 0, CAST(N'2016-12-23T06:52:39.723' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (426, N'PSGRIDK             ', N'Scourge                                                                                             ', N'Pounce                                                                                              ', 17, 5, 0, CAST(N'2016-12-23T06:52:39.937' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (427, N'DSDWWSI             ', N'Sugarfeather                                                                                        ', N'Dazzledust                                                                                          ', 40, 5, 0, CAST(N'2016-12-23T06:52:40.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (428, N'CCIUVQF             ', N'Clarkson                                                                                            ', N'Crippler                                                                                            ', 11, 2, 0, CAST(N'2016-12-23T06:52:40.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (429, N'GMYTRHI             ', N'Marika                                                                                              ', N'Gilchrist                                                                                           ', 20, 8, 0, CAST(N'2016-12-23T06:52:40.567' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (430, N'TCJSSTA             ', N'Carbrey                                                                                             ', N'Tasgall                                                                                             ', 28, 2, 0, CAST(N'2016-12-23T06:52:40.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (431, N'HMQATLG             ', N'Maoilios                                                                                            ', N'Harmony                                                                                             ', 14, 8, 0, CAST(N'2016-12-23T06:52:40.997' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (432, N'MAOPMCW             ', N'Animal                                                                                              ', N'Maitland                                                                                            ', 8, 2, 0, CAST(N'2016-12-23T06:52:41.203' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (433, N'ASGGJDO             ', N'Studwick                                                                                            ', N'Assassin                                                                                            ', 29, 8, 0, CAST(N'2016-12-23T06:52:53.450' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (434, N'GWXGRNG             ', N'Warrick                                                                                             ', N'Grapple                                                                                             ', 9, 4, 0, CAST(N'2016-12-23T06:52:53.667' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (435, N'SJOGMTJ             ', N'Jazz                                                                                                ', N'Scourge                                                                                             ', 15, 5, 0, CAST(N'2016-12-23T06:52:53.887' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (436, N'TSRCLMM             ', N'Spacespirit                                                                                         ', N'Twinkleleaf                                                                                         ', 3, 8, 0, CAST(N'2016-12-23T06:52:54.097' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (437, N'HMIGWAI             ', N'Meissner                                                                                            ', N'Herbie                                                                                              ', 52, 7, 0, CAST(N'2016-12-23T06:52:54.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (438, N'CDJAFVJ             ', N'Donohoe                                                                                             ', N'Carbry                                                                                              ', 12, 4, 0, CAST(N'2016-12-23T06:52:54.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (439, N'AGSMVTW             ', N'Gears                                                                                               ', N'Alasdair                                                                                            ', 35, 8, 0, CAST(N'2016-12-23T06:52:54.757' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (440, N'AJOLTRO             ', N'Junge                                                                                               ', N'Atomic                                                                                              ', 6, 2, 0, CAST(N'2016-12-23T06:52:54.967' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (441, N'PHLNXQQ             ', N'Hawking                                                                                             ', N'Pollyanna                                                                                           ', 21, 5, 0, CAST(N'2016-12-23T06:52:55.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (442, N'MMTVRXN             ', N'Moongaze                                                                                            ', N'Mari                                                                                                ', 58, 3, 0, CAST(N'2016-12-23T06:52:55.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (443, N'JFGOJYA             ', N'Force                                                                                               ', N'Jochim                                                                                              ', 64, 6, 0, CAST(N'2016-12-23T06:52:55.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (444, N'UEJQLYM             ', N'Error                                                                                               ', N'Ultra                                                                                               ', 38, 8, 0, CAST(N'2016-12-23T06:52:55.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (445, N'AQKBUGI             ', N'Quickberry                                                                                          ', N'Alodia                                                                                              ', 7, 1, 0, CAST(N'2016-12-23T06:52:56.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (446, N'KDNPWMA             ', N'Donnchadh                                                                                           ', N'Knut                                                                                                ', 70, 3, 0, CAST(N'2016-12-23T06:52:56.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (447, N'CNTMMEC             ', N'Nita                                                                                                ', N'Ceallagh                                                                                            ', 18, 2, 0, CAST(N'2016-12-23T06:52:56.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (448, N'MAETIUO             ', N'Alberts                                                                                             ', N'Maitland                                                                                            ', 30, 1, 0, CAST(N'2016-12-23T06:52:56.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (449, N'CHSAGIR             ', N'Hawking                                                                                             ', N'Chickenfarmer                                                                                       ', 10, 7, 0, CAST(N'2016-12-23T06:52:56.907' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (450, N'WNKWPCH             ', N'Nita                                                                                                ', N'Webster                                                                                             ', 41, 4, 0, CAST(N'2016-12-23T06:52:57.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (451, N'SPEFYQY             ', N'Potatochaser                                                                                        ', N'Sleek                                                                                               ', 4, 3, 0, CAST(N'2016-12-23T06:52:57.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (452, N'KBJSATW             ', N'Breakdown                                                                                           ', N'Kermit                                                                                              ', 19, 7, 0, CAST(N'2016-12-23T06:52:57.560' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (453, N'CSQLTQE             ', N'Simpkin                                                                                             ', N'Clearkiss                                                                                           ', 36, 1, 0, CAST(N'2016-12-23T06:52:57.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (454, N'TSNCMXV             ', N'Schuler                                                                                             ', N'Terje                                                                                               ', 13, 1, 0, CAST(N'2016-12-23T06:52:57.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (455, N'OHDBAYL             ', N'Hofmann                                                                                             ', N'Overkill                                                                                            ', 42, 5, 0, CAST(N'2016-12-23T06:52:58.193' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (456, N'SGWPYVW             ', N'Griffin                                                                                             ', N'Silverfrost                                                                                         ', 5, 3, 0, CAST(N'2016-12-23T06:52:58.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (457, N'PMDMAXL             ', N'Meissner                                                                                            ', N'Pigplanter                                                                                          ', 39, 1, 0, CAST(N'2016-12-23T06:52:58.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (458, N'CWXLVAP             ', N'Warrick                                                                                             ', N'Corona                                                                                              ', 33, 5, 0, CAST(N'2016-12-23T06:52:58.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (459, N'KABRYEG             ', N'Age                                                                                                 ', N'Kim                                                                                                 ', 16, 5, 0, CAST(N'2016-12-23T06:52:59.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (460, N'PSEQEDO             ', N'School                                                                                              ', N'Punch                                                                                               ', 2, 5, 0, CAST(N'2016-12-23T06:52:59.283' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (461, N'WAAEPXV             ', N'Age                                                                                                 ', N'Webster                                                                                             ', 71, 2, 0, CAST(N'2016-12-23T06:52:59.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (462, N'LSKVALE             ', N'Schuler                                                                                             ', N'Lalla                                                                                               ', 17, 7, 0, CAST(N'2016-12-23T06:52:59.723' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (463, N'PSDYFLF             ', N'Sparklemoon                                                                                         ', N'Pigplanter                                                                                          ', 40, 1, 0, CAST(N'2016-12-23T06:52:59.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (464, N'DSUTVHE             ', N'Snowfeather                                                                                         ', N'Dolly-Sue                                                                                           ', 11, 5, 0, CAST(N'2016-12-23T06:53:00.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (465, N'JMGCVVO             ', N'Mirjam                                                                                              ', N'Jellygleam                                                                                          ', 20, 7, 0, CAST(N'2016-12-23T06:53:00.607' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (466, N'ECFRMJR             ', N'Cyra                                                                                                ', N'Everild                                                                                             ', 28, 3, 0, CAST(N'2016-12-23T06:53:00.853' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (467, N'SWQOYMB             ', N'Woods                                                                                               ', N'Shaw                                                                                                ', 14, 8, 0, CAST(N'2016-12-23T06:53:01.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (468, N'MSHCQLU             ', N'Starbeam                                                                                            ', N'Marika                                                                                              ', 8, 4, 0, CAST(N'2016-12-23T06:53:01.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (469, N'WGRTFYU             ', N'Golddust                                                                                            ', N'Wingspan                                                                                            ', 29, 4, 0, CAST(N'2016-12-23T06:53:06.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (470, N'OHTXPIV             ', N'Hawking                                                                                             ', N'Octane                                                                                              ', 9, 6, 0, CAST(N'2016-12-23T06:53:06.327' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (471, N'SSCYPLC             ', N'Sideswipe                                                                                           ', N'Sacnite                                                                                             ', 15, 1, 0, CAST(N'2016-12-23T06:53:06.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (472, N'TJTWPIY             ', N'Julitta                                                                                             ', N'Tasgall                                                                                             ', 3, 4, 0, CAST(N'2016-12-23T06:53:06.763' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (473, N'OBOTBPJ             ', N'Breakdown                                                                                           ', N'Octane                                                                                              ', 52, 1, 0, CAST(N'2016-12-23T06:53:06.977' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (474, N'GJBWRKB             ', N'Julitta                                                                                             ', N'Gobnata                                                                                             ', 12, 5, 0, CAST(N'2016-12-23T06:53:07.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (475, N'PWAGQFD             ', N'Wheeljack                                                                                           ', N'Pigplanter                                                                                          ', 35, 1, 0, CAST(N'2016-12-23T06:53:07.420' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (476, N'DBMKYFV             ', N'Biceps                                                                                              ', N'Dirtgreaser                                                                                         ', 6, 4, 0, CAST(N'2016-12-23T06:53:07.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (477, N'JAHLONL             ', N'Andersen                                                                                            ', N'Jeremiah                                                                                            ', 21, 6, 0, CAST(N'2016-12-23T06:53:07.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (478, N'DIUJVCB             ', N'Itzel                                                                                               ', N'Douglas                                                                                             ', 58, 6, 0, CAST(N'2016-12-23T06:53:08.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (479, N'HOTIPYS             ', N'Ogden                                                                                               ', N'Haidee                                                                                              ', 64, 1, 0, CAST(N'2016-12-23T06:53:08.293' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (480, N'TANVBGD             ', N'Albert                                                                                              ', N'Titania                                                                                             ', 38, 7, 0, CAST(N'2016-12-23T06:53:08.513' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (481, N'HKULTYR             ', N'Kaisa                                                                                               ', N'Harmony                                                                                             ', 7, 4, 0, CAST(N'2016-12-23T06:53:08.730' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (482, N'DNQKIHF             ', N'Nita                                                                                                ', N'Daniel                                                                                              ', 70, 3, 0, CAST(N'2016-12-23T06:53:08.953' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (483, N'PMNISLA             ', N'Mirjam                                                                                              ', N'Pollyanna                                                                                           ', 18, 1, 0, CAST(N'2016-12-23T06:53:09.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (484, N'BMVNFAT             ', N'Mirjam                                                                                              ', N'Beeatriks                                                                                           ', 30, 2, 0, CAST(N'2016-12-23T06:53:09.377' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (485, N'LKJTPFU             ', N'Keith                                                                                               ', N'Loyd                                                                                                ', 10, 6, 0, CAST(N'2016-12-23T06:53:09.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (486, N'MMQGPRY             ', N'Miles                                                                                               ', N'Marika                                                                                              ', 41, 5, 0, CAST(N'2016-12-23T06:53:09.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (487, N'RDCJKTJ             ', N'Dazzlegaze                                                                                          ', N'Riina                                                                                               ', 4, 6, 0, CAST(N'2016-12-23T06:53:10.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (488, N'ARRQQFK             ', N'Rock                                                                                                ', N'Arcana                                                                                              ', 19, 1, 0, CAST(N'2016-12-23T06:53:10.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (489, N'ZCFIMCG             ', N'Carbrey                                                                                             ', N'Zyanya                                                                                              ', 36, 2, 0, CAST(N'2016-12-23T06:53:10.477' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (490, N'DIGEOPC             ', N'Iomhar                                                                                              ', N'Dolly-Sue                                                                                           ', 13, 8, 0, CAST(N'2016-12-23T06:53:10.693' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (491, N'RMPOJWQ             ', N'Marcas                                                                                              ', N'Ruairidh                                                                                            ', 42, 5, 0, CAST(N'2016-12-23T06:53:10.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (492, N'CJKLUOI             ', N'Jakeman                                                                                             ', N'Cyra                                                                                                ', 5, 1, 0, CAST(N'2016-12-23T06:53:11.133' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (493, N'GZDACGV             ', N'Zuleika                                                                                             ', N'Goldshy                                                                                             ', 39, 4, 0, CAST(N'2016-12-23T06:53:11.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (494, N'GSYBORR             ', N'Schmid                                                                                              ', N'Gumphauler                                                                                          ', 33, 6, 0, CAST(N'2016-12-23T06:53:11.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (495, N'SBIIQYA             ', N'Badcock                                                                                             ', N'Shaw                                                                                                ', 16, 6, 0, CAST(N'2016-12-23T06:53:11.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (496, N'CJWQULS             ', N'Julitta                                                                                             ', N'Cyra                                                                                                ', 2, 3, 0, CAST(N'2016-12-23T06:53:12.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (497, N'OCQISYV             ', N'Carbrey                                                                                             ', N'Overkill                                                                                            ', 71, 3, 0, CAST(N'2016-12-23T06:53:12.210' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (498, N'AFPRSDG             ', N'Fantine                                                                                             ', N'Arnie                                                                                               ', 17, 6, 0, CAST(N'2016-12-23T06:53:12.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (499, N'CSVDAJG             ', N'Sideswipe                                                                                           ', N'Cyra                                                                                                ', 40, 3, 0, CAST(N'2016-12-23T06:53:12.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (500, N'ADIMIEG             ', N'Dazzlegaze                                                                                          ', N'Aurel                                                                                               ', 11, 3, 0, CAST(N'2016-12-23T06:53:12.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (501, N'GJNJLHQ             ', N'Jazz                                                                                                ', N'Gentlegleam                                                                                         ', 20, 8, 0, CAST(N'2016-12-23T06:53:13.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (502, N'GVSTKEQ             ', N'Viktoria                                                                                            ', N'Grapple                                                                                             ', 28, 2, 0, CAST(N'2016-12-23T06:53:13.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (503, N'FSSHCKC             ', N'Sempers                                                                                             ', N'Fluttersheen                                                                                        ', 14, 6, 0, CAST(N'2016-12-23T06:53:13.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (504, N'QGCLLLF             ', N'Glittersheen                                                                                        ', N'Quickdance                                                                                          ', 8, 5, 0, CAST(N'2016-12-23T06:53:13.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (505, N'CSMEPOV             ', N'Siiri                                                                                               ', N'Crippler                                                                                            ', 29, 5, 0, CAST(N'2016-12-23T06:53:19.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (506, N'ZPEXAYT             ', N'Prowl                                                                                               ', N'Zyanya                                                                                              ', 9, 3, 0, CAST(N'2016-12-23T06:53:19.693' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (507, N'MWPDMIX             ', N'Woods                                                                                               ', N'Mooncheeks                                                                                          ', 15, 2, 0, CAST(N'2016-12-23T06:53:19.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (508, N'BRCXUNU             ', N'Roxelana                                                                                            ', N'Bertram                                                                                             ', 3, 1, 0, CAST(N'2016-12-23T06:53:20.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (509, N'ESJOYGV             ', N'Starbeam                                                                                            ', N'Everild                                                                                             ', 52, 4, 0, CAST(N'2016-12-23T06:53:20.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (510, N'TAPFSTW             ', N'Allsopp                                                                                             ', N'Terje                                                                                               ', 12, 5, 0, CAST(N'2016-12-23T06:53:20.567' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (511, N'FKJDFLK             ', N'Kaisa                                                                                               ', N'Fergus                                                                                              ', 35, 6, 0, CAST(N'2016-12-23T06:53:20.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (512, N'ODMPCYB             ', N'Da''ronda                                                                                            ', N'Octane                                                                                              ', 6, 4, 0, CAST(N'2016-12-23T06:53:20.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (513, N'LABIHCH             ', N'Amsel                                                                                               ', N'Loviise                                                                                             ', 21, 1, 0, CAST(N'2016-12-23T06:53:21.223' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (514, N'DCSHBFH             ', N'Cosmicmother                                                                                        ', N'Double                                                                                              ', 58, 1, 0, CAST(N'2016-12-23T06:53:21.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (515, N'ASMXEIF             ', N'Schuler                                                                                             ', N'Assassin                                                                                            ', 64, 4, 0, CAST(N'2016-12-23T06:53:21.657' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (516, N'COAPEGE             ', N'Ogden                                                                                               ', N'Crush                                                                                               ', 38, 1, 0, CAST(N'2016-12-23T06:53:21.873' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (517, N'GBMHVDJ             ', N'Blitzwing                                                                                           ', N'Gilchrist                                                                                           ', 7, 8, 0, CAST(N'2016-12-23T06:53:22.097' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (518, N'ANWHIAT             ', N'Nye                                                                                                 ', N'Arcana                                                                                              ', 70, 4, 0, CAST(N'2016-12-23T06:53:22.310' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (519, N'LAXSDWP             ', N'Aylen                                                                                               ', N'Loyd                                                                                                ', 18, 6, 0, CAST(N'2016-12-23T06:53:22.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (520, N'TNTLDYS             ', N'Nita                                                                                                ', N'Tasgall                                                                                             ', 30, 1, 0, CAST(N'2016-12-23T06:53:22.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (521, N'ALHINGP             ', N'Leavitt                                                                                             ', N'Applebreeze                                                                                         ', 10, 8, 0, CAST(N'2016-12-23T06:53:22.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (522, N'ASXYVRX             ', N'Sempers                                                                                             ', N'Assassin                                                                                            ', 41, 1, 0, CAST(N'2016-12-23T06:53:23.177' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (523, N'ASGPQDH             ', N'Scourge                                                                                             ', N'Assassin                                                                                            ', 4, 3, 0, CAST(N'2016-12-23T06:53:23.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (524, N'ASXWNFH             ', N'Siiri                                                                                               ', N'Ayelen                                                                                              ', 19, 1, 0, CAST(N'2016-12-23T06:53:23.610' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (525, N'MKIQDFO             ', N'Kaisa                                                                                               ', N'Maitland                                                                                            ', 36, 1, 0, CAST(N'2016-12-23T06:53:23.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (526, N'ZACCNDU             ', N'Amsel                                                                                               ', N'Zyanya                                                                                              ', 13, 2, 0, CAST(N'2016-12-23T06:53:24.057' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (527, N'GAPDAGH             ', N'Amsel                                                                                               ', N'Gears                                                                                               ', 42, 6, 0, CAST(N'2016-12-23T06:53:24.273' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (528, N'GSSSQTL             ', N'Sugarkiss                                                                                           ', N'Grapple                                                                                             ', 5, 8, 0, CAST(N'2016-12-23T06:53:24.483' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (529, N'KCHBAOR             ', N'Calfuray                                                                                            ', N'Katariina                                                                                           ', 39, 4, 0, CAST(N'2016-12-23T06:53:24.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (530, N'MKIUCJN             ', N'Kaisa                                                                                               ', N'Methoataske                                                                                         ', 33, 8, 0, CAST(N'2016-12-23T06:53:24.903' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (531, N'RCTCILF             ', N'Calfuray                                                                                            ', N'Rhino                                                                                               ', 16, 2, 0, CAST(N'2016-12-23T06:53:25.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (532, N'RDKHPPX             ', N'Donohoe                                                                                             ', N'Ross                                                                                                ', 2, 8, 0, CAST(N'2016-12-23T06:53:25.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (533, N'POBBKOB             ', N'Optimus                                                                                             ', N'Pounce                                                                                              ', 71, 4, 0, CAST(N'2016-12-23T06:53:25.553' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (534, N'JROJETT             ', N'Rock                                                                                                ', N'Jellygleam                                                                                          ', 17, 8, 0, CAST(N'2016-12-23T06:53:25.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (535, N'PMNUUTE             ', N'Maoilios                                                                                            ', N'Powerglide                                                                                          ', 40, 8, 0, CAST(N'2016-12-23T06:53:26.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (536, N'MFERVCC             ', N'Force                                                                                               ', N'Marika                                                                                              ', 11, 2, 0, CAST(N'2016-12-23T06:53:26.203' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (537, N'SFLEBXO             ', N'Force                                                                                               ', N'Sacnite                                                                                             ', 20, 5, 0, CAST(N'2016-12-23T06:53:26.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (538, N'AVYPNSQ             ', N'Vorath                                                                                              ', N'Aleksandra                                                                                          ', 28, 5, 0, CAST(N'2016-12-23T06:53:26.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (539, N'GJNHVLI             ', N'Jacobson                                                                                            ', N'Goldshy                                                                                             ', 14, 2, 0, CAST(N'2016-12-23T06:53:26.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (540, N'GLRLGBH             ', N'Lashawnda                                                                                           ', N'Goldstar                                                                                            ', 8, 7, 0, CAST(N'2016-12-23T06:53:27.057' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (541, N'APOAICX             ', N'Peacespirit                                                                                         ', N'Alfred                                                                                              ', 29, 3, 0, CAST(N'2016-12-23T06:53:32.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (542, N'WDHNCHG             ', N'Donohoe                                                                                             ', N'Wingspan                                                                                            ', 9, 2, 0, CAST(N'2016-12-23T06:53:33.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (543, N'KSCTFXJ             ', N'Sherman                                                                                             ', N'Katariina                                                                                           ', 15, 5, 0, CAST(N'2016-12-23T06:53:33.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (544, N'GRFQLJW             ', N'Rippersnapper                                                                                       ', N'Gobnata                                                                                             ', 3, 4, 0, CAST(N'2016-12-23T06:53:33.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (545, N'ASBMIUJ             ', N'Simpkin                                                                                             ', N'Applebreeze                                                                                         ', 52, 1, 0, CAST(N'2016-12-23T06:53:33.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (546, N'FSHGQKF             ', N'Sludge                                                                                              ', N'Forest                                                                                              ', 12, 2, 0, CAST(N'2016-12-23T06:53:34.213' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (547, N'GRSQQSG             ', N'Rippersnapper                                                                                       ', N'Goldshy                                                                                             ', 35, 4, 0, CAST(N'2016-12-23T06:53:34.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (548, N'NGRXPQA             ', N'Glitterfluff                                                                                        ', N'Nydia                                                                                               ', 6, 5, 0, CAST(N'2016-12-23T06:53:34.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (549, N'OERGKCB             ', N'Error                                                                                               ', N'Overkill                                                                                            ', 21, 3, 0, CAST(N'2016-12-23T06:53:34.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (550, N'CGQUKHN             ', N'Graves                                                                                              ', N'Crush                                                                                               ', 58, 2, 0, CAST(N'2016-12-23T06:53:35.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (551, N'SMLIGWT             ', N'Miles                                                                                               ', N'Sleek                                                                                               ', 64, 8, 0, CAST(N'2016-12-23T06:53:35.317' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (552, N'SASQGCH             ', N'Anthonyson                                                                                          ', N'Sean                                                                                                ', 38, 7, 0, CAST(N'2016-12-23T06:53:35.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (553, N'APWPOHL             ', N'Pocahontas                                                                                          ', N'Aleksander                                                                                          ', 7, 6, 0, CAST(N'2016-12-23T06:53:35.757' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (554, N'PFHKKKM             ', N'Flutternose                                                                                         ', N'Punch                                                                                               ', 70, 4, 0, CAST(N'2016-12-23T06:53:35.977' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (555, N'JMBTLMS             ', N'Miles                                                                                               ', N'Jellygleam                                                                                          ', 18, 8, 0, CAST(N'2016-12-23T06:53:36.190' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (556, N'DCXOMOK             ', N'Calfuray                                                                                            ', N'Double                                                                                              ', 30, 4, 0, CAST(N'2016-12-23T06:53:36.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (557, N'JLLDWNP             ', N'Lashawnda                                                                                           ', N'Jochim                                                                                              ', 10, 4, 0, CAST(N'2016-12-23T06:53:36.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (558, N'KMPHDVO             ', N'Marcas                                                                                              ', N'Kermit                                                                                              ', 41, 6, 0, CAST(N'2016-12-23T06:53:36.847' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (559, N'APYKVRY             ', N'Prowl                                                                                               ', N'Aleksandra                                                                                          ', 4, 8, 0, CAST(N'2016-12-23T06:53:37.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (560, N'GMDRYAQ             ', N'Maoilios                                                                                            ', N'Grapple                                                                                             ', 19, 3, 0, CAST(N'2016-12-23T06:53:37.287' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (561, N'WKEMEAE             ', N'Kreka                                                                                               ', N'Webster                                                                                             ', 36, 6, 0, CAST(N'2016-12-23T06:53:37.497' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (562, N'JTTCYVU             ', N'Tyrrell                                                                                             ', N'Jellygleam                                                                                          ', 13, 5, 0, CAST(N'2016-12-23T06:53:37.730' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (563, N'MMCTEYT             ', N'Mirjam                                                                                              ', N'Marika                                                                                              ', 42, 3, 0, CAST(N'2016-12-23T06:53:37.947' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (564, N'RSTPQUJ             ', N'Scavenger                                                                                           ', N'Rein                                                                                                ', 5, 5, 0, CAST(N'2016-12-23T06:53:38.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (565, N'DEDXFFO             ', N'Error                                                                                               ', N'Dazzledust                                                                                          ', 39, 3, 0, CAST(N'2016-12-23T06:53:38.383' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (566, N'HSTGWJX             ', N'Stone                                                                                               ', N'Herbie                                                                                              ', 33, 7, 0, CAST(N'2016-12-23T06:53:38.607' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (567, N'GOIFSXH             ', N'Ogden                                                                                               ', N'Grapple                                                                                             ', 16, 1, 0, CAST(N'2016-12-23T06:53:38.817' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (568, N'CSOXRKS             ', N'Sherman                                                                                             ', N'Corona                                                                                              ', 2, 2, 0, CAST(N'2016-12-23T06:53:39.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (569, N'BKOVEWG             ', N'Kaisa                                                                                               ', N'Barleyfarmer                                                                                        ', 71, 7, 0, CAST(N'2016-12-23T06:53:39.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (570, N'SAMKRTI             ', N'Aylen                                                                                               ', N'Sally                                                                                               ', 17, 1, 0, CAST(N'2016-12-23T06:53:39.450' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (571, N'KOOFQEX             ', N'Optimus                                                                                             ', N'Kerr                                                                                                ', 40, 3, 0, CAST(N'2016-12-23T06:53:39.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (572, N'ASOINRB             ', N'Simpkin                                                                                             ', N'Aleksander                                                                                          ', 11, 8, 0, CAST(N'2016-12-23T06:53:39.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (573, N'PRBLXYX             ', N'Roxelana                                                                                            ', N'Pipaluk                                                                                             ', 20, 3, 0, CAST(N'2016-12-23T06:53:40.097' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (574, N'MIITOQD             ', N'Itzel                                                                                               ', N'Maimu                                                                                               ', 28, 8, 0, CAST(N'2016-12-23T06:53:40.303' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (575, N'RIEKXXP             ', N'Iomhar                                                                                              ', N'Ross                                                                                                ', 14, 2, 0, CAST(N'2016-12-23T06:53:40.517' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (576, N'PFJTIST             ', N'Flutternose                                                                                         ', N'Powerglide                                                                                          ', 8, 4, 0, CAST(N'2016-12-23T06:53:40.733' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (577, N'AKDFLRF             ', N'Koenig                                                                                              ', N'Arcana                                                                                              ', 29, 5, 0, CAST(N'2016-12-23T06:53:56.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (578, N'MMTSBRG             ', N'Meissner                                                                                            ', N'Maitland                                                                                            ', 9, 5, 0, CAST(N'2016-12-23T06:53:56.730' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (579, N'CRKLIEH             ', N'Roxelana                                                                                            ', N'Crazy                                                                                               ', 15, 4, 0, CAST(N'2016-12-23T06:53:56.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (580, N'MVVTBYT             ', N'Viktoria                                                                                            ', N'Marika                                                                                              ', 3, 6, 0, CAST(N'2016-12-23T06:53:57.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (581, N'JSYMWFA             ', N'Sludge                                                                                              ', N'Jellygleam                                                                                          ', 52, 6, 0, CAST(N'2016-12-23T06:53:57.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (582, N'SDNPKKD             ', N'Dazzlegaze                                                                                          ', N'Snowdance                                                                                           ', 12, 1, 0, CAST(N'2016-12-23T06:53:57.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (583, N'LSWYWAT             ', N'Siiri                                                                                               ', N'Lalla                                                                                               ', 35, 4, 0, CAST(N'2016-12-23T06:53:57.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (584, N'ROBUYIW             ', N'Ogden                                                                                               ', N'Rollo                                                                                               ', 6, 5, 0, CAST(N'2016-12-23T06:53:58.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (585, N'AIOFKPH             ', N'Ibbott                                                                                              ', N'Almira                                                                                              ', 21, 6, 0, CAST(N'2016-12-23T06:53:58.457' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (586, N'PAJKQXK             ', N'Alberts                                                                                             ', N'Perceptor                                                                                           ', 58, 3, 0, CAST(N'2016-12-23T06:53:58.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (587, N'ZSKYSML             ', N'Starbeam                                                                                            ', N'Zyanya                                                                                              ', 64, 8, 0, CAST(N'2016-12-23T06:53:58.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (588, N'MMQERUD             ', N'Mirjam                                                                                              ', N'Maimu                                                                                               ', 38, 6, 0, CAST(N'2016-12-23T06:53:59.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (589, N'SSLHQHE             ', N'Sempers                                                                                             ', N'Sheard                                                                                              ', 7, 4, 0, CAST(N'2016-12-23T06:53:59.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (590, N'WGODJQM             ', N'Glittersheen                                                                                        ', N'Wingspan                                                                                            ', 70, 1, 0, CAST(N'2016-12-23T06:53:59.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (591, N'SDGCSKD             ', N'Dulcinea                                                                                            ', N'Sofia                                                                                               ', 18, 5, 0, CAST(N'2016-12-23T06:53:59.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (592, N'GOMOHAV             ', N'Ogden                                                                                               ', N'Gilchrist                                                                                           ', 30, 4, 0, CAST(N'2016-12-23T06:54:00.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (593, N'OGADTIG             ', N'Glittersheen                                                                                        ', N'Overkill                                                                                            ', 10, 1, 0, CAST(N'2016-12-23T06:54:00.307' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (594, N'KSMYRQX             ', N'Sugarfeather                                                                                        ', N'Kadri                                                                                               ', 41, 3, 0, CAST(N'2016-12-23T06:54:00.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (595, N'RPNADDN             ', N'Peacespirit                                                                                         ', N'Riina                                                                                               ', 4, 8, 0, CAST(N'2016-12-23T06:54:00.737' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (596, N'DMHOGYQ             ', N'Marika                                                                                              ', N'David                                                                                               ', 19, 1, 0, CAST(N'2016-12-23T06:54:00.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (597, N'JQSXUPB             ', N'Quickberry                                                                                          ', N'Johanna                                                                                             ', 36, 3, 0, CAST(N'2016-12-23T06:54:01.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (598, N'CGMUPAX             ', N'Graves                                                                                              ', N'Chickenfarmer                                                                                       ', 13, 1, 0, CAST(N'2016-12-23T06:54:01.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (599, N'LOLVPUC             ', N'Optimus                                                                                             ', N'Lalla                                                                                               ', 42, 5, 0, CAST(N'2016-12-23T06:54:01.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (600, N'KGJMIOG             ', N'Griffin                                                                                             ', N'Kermit                                                                                              ', 5, 1, 0, CAST(N'2016-12-23T06:54:01.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (601, N'WSCXXVH             ', N'Siiri                                                                                               ', N'Wingspan                                                                                            ', 39, 3, 0, CAST(N'2016-12-23T06:54:02.057' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (602, N'DPEGQGN             ', N'Potatochaser                                                                                        ', N'David                                                                                               ', 33, 2, 0, CAST(N'2016-12-23T06:54:02.273' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (603, N'DKBXVHI             ', N'Klowee                                                                                              ', N'Dolly-Sue                                                                                           ', 16, 8, 0, CAST(N'2016-12-23T06:54:02.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (604, N'NAVWNNK             ', N'Ally                                                                                                ', N'Nydia                                                                                               ', 2, 5, 0, CAST(N'2016-12-23T06:54:02.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (605, N'RRKPNIA             ', N'Rock                                                                                                ', N'Runabout                                                                                            ', 71, 3, 0, CAST(N'2016-12-23T06:54:02.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (606, N'AMQDYEV             ', N'Marika                                                                                              ', N'Arlen                                                                                               ', 17, 3, 0, CAST(N'2016-12-23T06:54:03.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (607, N'KPATOAV             ', N'Pocahontas                                                                                          ', N'Kateri                                                                                              ', 40, 8, 0, CAST(N'2016-12-23T06:54:03.397' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (608, N'CKJPVCC             ', N'Kaisa                                                                                               ', N'Clearkiss                                                                                           ', 11, 2, 0, CAST(N'2016-12-23T06:54:03.610' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (609, N'PVKRXNS             ', N'Vorath                                                                                              ', N'Pigplanter                                                                                          ', 20, 2, 0, CAST(N'2016-12-23T06:54:03.827' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (610, N'ABUQBGL             ', N'Badcock                                                                                             ', N'Arcana                                                                                              ', 28, 8, 0, CAST(N'2016-12-23T06:54:04.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (611, N'AMYKSRV             ', N'MacClelland                                                                                         ', N'Aloysius                                                                                            ', 14, 1, 0, CAST(N'2016-12-23T06:54:04.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (612, N'CKYNAUN             ', N'Kateri                                                                                              ', N'C emgein                                                                                            ', 8, 5, 0, CAST(N'2016-12-23T06:54:04.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (613, N'ZEDVNNY             ', N'Error                                                                                               ', N'Zyanya                                                                                              ', 29, 1, 0, CAST(N'2016-12-23T06:54:23.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (614, N'MGWBCIU             ', N'Glittercloud                                                                                        ', N'Marika                                                                                              ', 9, 8, 0, CAST(N'2016-12-23T06:54:23.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (615, N'AMIBSFY             ', N'Miles                                                                                               ', N'Alodia                                                                                              ', 15, 4, 0, CAST(N'2016-12-23T06:54:23.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (616, N'KKGMYCK             ', N'Koenig                                                                                              ', N'Katariina                                                                                           ', 3, 1, 0, CAST(N'2016-12-23T06:54:23.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (617, N'MMFXQUA             ', N'Moongaze                                                                                            ', N'Mirjam                                                                                              ', 52, 2, 0, CAST(N'2016-12-23T06:54:24.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (618, N'MSJRKAT             ', N'Sigrid                                                                                              ', N'Maitland                                                                                            ', 12, 6, 0, CAST(N'2016-12-23T06:54:24.257' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (619, N'CKOWWDG             ', N'Kaisa                                                                                               ', N'Corona                                                                                              ', 35, 2, 0, CAST(N'2016-12-23T06:54:24.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (620, N'BSSTPBT             ', N'Sideswipe                                                                                           ', N'Blair                                                                                               ', 6, 1, 0, CAST(N'2016-12-23T06:54:24.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (621, N'CJKMANQ             ', N'Julitta                                                                                             ', N'Crazy                                                                                               ', 21, 8, 0, CAST(N'2016-12-23T06:54:24.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (622, N'MATGRGK             ', N'Andersen                                                                                            ', N'Methoataske                                                                                         ', 58, 1, 0, CAST(N'2016-12-23T06:54:25.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (623, N'BASBRNY             ', N'Aylen                                                                                               ', N'Beeatriks                                                                                           ', 64, 8, 0, CAST(N'2016-12-23T06:54:25.313' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (624, N'LLFIWKS             ', N'Leavitt                                                                                             ', N'Loviise                                                                                             ', 38, 3, 0, CAST(N'2016-12-23T06:54:25.527' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (625, N'CMTBFXN             ', N'Marika                                                                                              ', N'Chickenchaser                                                                                       ', 7, 3, 0, CAST(N'2016-12-23T06:54:25.737' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (626, N'CKQMINV             ', N'Kaisa                                                                                               ', N'Ceallagh                                                                                            ', 70, 7, 0, CAST(N'2016-12-23T06:54:25.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (627, N'MPUVNBR             ', N'Philomel                                                                                            ', N'Morgen                                                                                              ', 18, 7, 0, CAST(N'2016-12-23T06:54:26.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (628, N'RBGIMKB             ', N'Blake                                                                                               ', N'Runabout                                                                                            ', 30, 1, 0, CAST(N'2016-12-23T06:54:26.377' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (629, N'GNQUNIN             ', N'Nita                                                                                                ', N'Gears                                                                                               ', 10, 8, 0, CAST(N'2016-12-23T06:54:26.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (630, N'ARXRMCH             ', N'Rippersnapper                                                                                       ', N'Aloysius                                                                                            ', 41, 3, 0, CAST(N'2016-12-23T06:54:26.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (631, N'LSHSIJG             ', N'Sureshot                                                                                            ', N'Lightspeed                                                                                          ', 4, 2, 0, CAST(N'2016-12-23T06:54:27.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (632, N'DRHFKGF             ', N'Ruairi                                                                                              ', N'Douglas                                                                                             ', 19, 4, 0, CAST(N'2016-12-23T06:54:27.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (633, N'ATXLIQW             ', N'Twinkleeyes                                                                                         ', N'Alodia                                                                                              ', 36, 5, 0, CAST(N'2016-12-23T06:54:27.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (634, N'DSBDAFQ             ', N'Sugarkiss                                                                                           ', N'Douglas                                                                                             ', 13, 6, 0, CAST(N'2016-12-23T06:54:27.667' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (635, N'HTOHNIN             ', N'Twinkleeyes                                                                                         ', N'Harmony                                                                                             ', 42, 7, 0, CAST(N'2016-12-23T06:54:27.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (636, N'MCWRLBF             ', N'Calfuray                                                                                            ', N'Mari                                                                                                ', 5, 7, 0, CAST(N'2016-12-23T06:54:28.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (637, N'KCCQVTV             ', N'Calfuray                                                                                            ', N'Kadri                                                                                               ', 39, 5, 0, CAST(N'2016-12-23T06:54:28.310' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (638, N'GARBOTO             ', N'Animal                                                                                              ', N'Goldshy                                                                                             ', 33, 2, 0, CAST(N'2016-12-23T06:54:28.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (639, N'PSDOXNM             ', N'Schuler                                                                                             ', N'Pigplanter                                                                                          ', 16, 1, 0, CAST(N'2016-12-23T06:54:28.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (640, N'DHFAXDQ             ', N'Hofmann                                                                                             ', N'Dazzledust                                                                                          ', 2, 7, 0, CAST(N'2016-12-23T06:54:28.977' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (641, N'FJUUKAU             ', N'Jazz                                                                                                ', N'Fluttersheen                                                                                        ', 71, 7, 0, CAST(N'2016-12-23T06:54:29.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (642, N'OMHDDFI             ', N'Marcas                                                                                              ', N'Octane                                                                                              ', 17, 8, 0, CAST(N'2016-12-23T06:54:29.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (643, N'ZMYNDUC             ', N'McNaughton                                                                                          ', N'Za re                                                                                               ', 40, 3, 0, CAST(N'2016-12-23T06:54:29.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (644, N'GSPNKUA             ', N'Starbeam                                                                                            ', N'Gumphauler                                                                                          ', 11, 8, 0, CAST(N'2016-12-23T06:54:29.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (645, N'SKSCSBH             ', N'Kateri                                                                                              ', N'Sacnite                                                                                             ', 20, 1, 0, CAST(N'2016-12-23T06:54:30.077' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (646, N'DKXARAK             ', N'Kateri                                                                                              ', N'Devastator                                                                                          ', 28, 2, 0, CAST(N'2016-12-23T06:54:30.293' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (647, N'CSFAREN             ', N'Sherman                                                                                             ', N'Carbry                                                                                              ', 14, 5, 0, CAST(N'2016-12-23T06:54:30.513' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (648, N'AMIMDDI             ', N'Mirjam                                                                                              ', N'Atomic                                                                                              ', 8, 4, 0, CAST(N'2016-12-23T06:54:30.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (649, N'AKIGXQW             ', N'Koenig                                                                                              ', N'Aurel                                                                                               ', 29, 7, 0, CAST(N'2016-12-23T06:54:34.737' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (650, N'CJXSEWV             ', N'Jakeman                                                                                             ', N'Crazy                                                                                               ', 9, 3, 0, CAST(N'2016-12-23T06:54:34.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (651, N'TLOLVXV             ', N'Leavitt                                                                                             ', N'Twinkleleaf                                                                                         ', 15, 7, 0, CAST(N'2016-12-23T06:54:35.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (652, N'ADJAGDY             ', N'Da''ronda                                                                                            ', N'Alodia                                                                                              ', 3, 7, 0, CAST(N'2016-12-23T06:54:35.373' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (653, N'AMFQMRK             ', N'Mirjam                                                                                              ', N'Aloysius                                                                                            ', 52, 7, 0, CAST(N'2016-12-23T06:54:35.593' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (654, N'BJWQWLT             ', N'Julitta                                                                                             ', N'Beeatriks                                                                                           ', 12, 6, 0, CAST(N'2016-12-23T06:54:35.817' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (655, N'WSJKJDM             ', N'Sugarkiss                                                                                           ', N'Webster                                                                                             ', 35, 4, 0, CAST(N'2016-12-23T06:54:36.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (656, N'RDXUSKS             ', N'Dulcinea                                                                                            ', N'Rein                                                                                                ', 6, 6, 0, CAST(N'2016-12-23T06:54:36.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (657, N'CSTVAAO             ', N'Spacespirit                                                                                         ', N'Crazy                                                                                               ', 21, 8, 0, CAST(N'2016-12-23T06:54:36.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (658, N'CLBXFPJ             ', N'Leelo                                                                                               ', N'Chickenfarmer                                                                                       ', 58, 8, 0, CAST(N'2016-12-23T06:54:36.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (659, N'TRMCDAW             ', N'Ruairi                                                                                              ', N'Tasgall                                                                                             ', 64, 3, 0, CAST(N'2016-12-23T06:54:36.873' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (660, N'SSTLWEY             ', N'Schmid                                                                                              ', N'Scourge                                                                                             ', 38, 2, 0, CAST(N'2016-12-23T06:54:37.083' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (661, N'HSQJUMU             ', N'Schuler                                                                                             ', N'Harmony                                                                                             ', 7, 3, 0, CAST(N'2016-12-23T06:54:37.293' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (662, N'ASHIKTI             ', N'Saunders                                                                                            ', N'Ailpein                                                                                             ', 70, 8, 0, CAST(N'2016-12-23T06:54:37.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (663, N'CSVTYSR             ', N'Sureshot                                                                                            ', N'Crippler                                                                                            ', 18, 2, 0, CAST(N'2016-12-23T06:54:37.727' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (664, N'CKWVXYY             ', N'Kaisa                                                                                               ', N'Crazy                                                                                               ', 30, 4, 0, CAST(N'2016-12-23T06:54:37.953' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (665, N'GWWYGWI             ', N'Wheeljack                                                                                           ', N'Gears                                                                                               ', 10, 2, 0, CAST(N'2016-12-23T06:54:38.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (666, N'SWSYCWF             ', N'Woods                                                                                               ', N'Sheard                                                                                              ', 41, 1, 0, CAST(N'2016-12-23T06:54:38.373' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (667, N'KSEWQQT             ', N'Schmid                                                                                              ', N'Kerr                                                                                                ', 4, 3, 0, CAST(N'2016-12-23T06:54:38.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (668, N'MCGHIYA             ', N'Calfuray                                                                                            ', N'Mirjam                                                                                              ', 19, 8, 0, CAST(N'2016-12-23T06:54:38.797' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (669, N'TWDXLVR             ', N'Warrick                                                                                             ', N'Tasgall                                                                                             ', 36, 6, 0, CAST(N'2016-12-23T06:54:39.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (670, N'CMSYPXE             ', N'MacClelland                                                                                         ', N'Crippler                                                                                            ', 13, 2, 0, CAST(N'2016-12-23T06:54:39.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (671, N'SDSGEYL             ', N'Dulcinea                                                                                            ', N'Sweetwing                                                                                           ', 42, 5, 0, CAST(N'2016-12-23T06:54:39.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (672, N'AGSSYEI             ', N'Glittercloud                                                                                        ', N'Ailpein                                                                                             ', 5, 2, 0, CAST(N'2016-12-23T06:54:39.653' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (673, N'JSRIEYN             ', N'Sigrid                                                                                              ', N'Jellygleam                                                                                          ', 39, 7, 0, CAST(N'2016-12-23T06:54:39.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (674, N'SKHHDDR             ', N'Kaisa                                                                                               ', N'Sweetstar                                                                                           ', 33, 4, 0, CAST(N'2016-12-23T06:54:40.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (675, N'RMUELXP             ', N'Mirjam                                                                                              ', N'Riina                                                                                               ', 16, 8, 0, CAST(N'2016-12-23T06:54:40.303' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (676, N'PSPOPMY             ', N'Saunders                                                                                            ', N'Perceptor                                                                                           ', 2, 4, 0, CAST(N'2016-12-23T06:54:40.513' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (677, N'SMITSJG             ', N'McNaughton                                                                                          ', N'Sleek                                                                                               ', 71, 7, 0, CAST(N'2016-12-23T06:54:40.737' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (678, N'HFNPBOT             ', N'Fantine                                                                                             ', N'Harmony                                                                                             ', 17, 5, 0, CAST(N'2016-12-23T06:54:40.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (679, N'DJJTRFY             ', N'Julitta                                                                                             ', N'Dietfried                                                                                           ', 40, 2, 0, CAST(N'2016-12-23T06:54:41.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (680, N'AMEUIQT             ', N'Meissner                                                                                            ', N'Aurel                                                                                               ', 11, 1, 0, CAST(N'2016-12-23T06:54:41.377' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (681, N'TSBLWRF             ', N'Sherman                                                                                             ', N'Tasgall                                                                                             ', 20, 6, 0, CAST(N'2016-12-23T06:54:41.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (682, N'AMEATDD             ', N'Maoilios                                                                                            ', N'Alodia                                                                                              ', 28, 7, 0, CAST(N'2016-12-23T06:54:41.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (683, N'QKOCUOT             ', N'Kaisa                                                                                               ', N'Quickdance                                                                                          ', 14, 2, 0, CAST(N'2016-12-23T06:54:42.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (684, N'PMCWVXM             ', N'Meissner                                                                                            ', N'Pollyanna                                                                                           ', 8, 6, 0, CAST(N'2016-12-23T06:54:42.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (685, N'PKUOVMP             ', N'Kaisa                                                                                               ', N'Pounce                                                                                              ', 29, 6, 0, CAST(N'2016-12-23T06:54:52.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (686, N'JTHLTMF             ', N'Twinkleeyes                                                                                         ', N'Joyce                                                                                               ', 9, 1, 0, CAST(N'2016-12-23T06:54:52.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (687, N'SNOHJTX             ', N'Nye                                                                                                 ', N'Scotty                                                                                              ', 15, 6, 0, CAST(N'2016-12-23T06:54:52.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (688, N'GSSKEYU             ', N'Seedfarmer                                                                                          ', N'Goldshy                                                                                             ', 3, 6, 0, CAST(N'2016-12-23T06:54:53.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (689, N'MAFQQUS             ', N'Albert                                                                                              ', N'Marika                                                                                              ', 52, 8, 0, CAST(N'2016-12-23T06:54:53.417' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (690, N'JCQDLMO             ', N'Calfuray                                                                                            ', N'Jochim                                                                                              ', 12, 6, 0, CAST(N'2016-12-23T06:54:53.640' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (691, N'JALAPDV             ', N'Amsel                                                                                               ', N'Joyce                                                                                               ', 35, 8, 0, CAST(N'2016-12-23T06:54:53.857' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (692, N'PMMHQBK             ', N'Marika                                                                                              ', N'Pigplanter                                                                                          ', 6, 4, 0, CAST(N'2016-12-23T06:54:54.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (693, N'JBLSNLO             ', N'Blake                                                                                               ', N'Jemmy                                                                                               ', 21, 6, 0, CAST(N'2016-12-23T06:54:54.310' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (694, N'CAMFUMB             ', N'Animal                                                                                              ', N'Crippler                                                                                            ', 58, 5, 0, CAST(N'2016-12-23T06:54:54.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (695, N'SRJCTSC             ', N'Ranald                                                                                              ', N'Silverfrost                                                                                         ', 64, 4, 0, CAST(N'2016-12-23T06:54:54.737' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (696, N'ACGORBN             ', N'Calfuray                                                                                            ', N'Applebreeze                                                                                         ', 38, 3, 0, CAST(N'2016-12-23T06:54:54.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (697, N'GCNYLWI             ', N'Cyra                                                                                                ', N'Gobnata                                                                                             ', 7, 8, 0, CAST(N'2016-12-23T06:54:55.167' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (698, N'BSYAFBL             ', N'Simpkin                                                                                             ', N'Bertram                                                                                             ', 70, 7, 0, CAST(N'2016-12-23T06:54:55.377' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (699, N'AATRPCJ             ', N'Andersen                                                                                            ', N'Atomic                                                                                              ', 18, 7, 0, CAST(N'2016-12-23T06:54:55.600' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (700, N'DWVKQMJ             ', N'Wheeljack                                                                                           ', N'Double                                                                                              ', 30, 5, 0, CAST(N'2016-12-23T06:54:55.813' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (701, N'KFHMTWK             ', N'Flutternose                                                                                         ', N'Kim                                                                                                 ', 10, 8, 0, CAST(N'2016-12-23T06:54:56.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (702, N'AGQFCWK             ', N'Glittercloud                                                                                        ', N'Arlen                                                                                               ', 41, 8, 0, CAST(N'2016-12-23T06:54:56.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (703, N'PCVLPPC             ', N'Carbrey                                                                                             ', N'Punch                                                                                               ', 4, 7, 0, CAST(N'2016-12-23T06:54:56.463' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (704, N'GRKMPPY             ', N'Ranald                                                                                              ', N'Gobnata                                                                                             ', 19, 4, 0, CAST(N'2016-12-23T06:54:56.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (705, N'WAJWHRR             ', N'Amsel                                                                                               ', N'Wingspan                                                                                            ', 36, 3, 0, CAST(N'2016-12-23T06:54:56.893' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (706, N'AGHYASH             ', N'Gears                                                                                               ', N'Arden                                                                                               ', 13, 1, 0, CAST(N'2016-12-23T06:54:57.103' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (707, N'JFAQKYK             ', N'Flutternose                                                                                         ', N'Joyce                                                                                               ', 42, 8, 0, CAST(N'2016-12-23T06:54:57.313' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (708, N'BDBBGSR             ', N'Dazzlegaze                                                                                          ', N'Beeatriks                                                                                           ', 5, 1, 0, CAST(N'2016-12-23T06:54:57.527' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (709, N'LSLDSIL             ', N'Scourge                                                                                             ', N'Loviise                                                                                             ', 39, 8, 0, CAST(N'2016-12-23T06:54:57.753' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (710, N'RCSQEOS             ', N'Cyra                                                                                                ', N'Rein                                                                                                ', 33, 6, 0, CAST(N'2016-12-23T06:54:57.963' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (711, N'SGQJMIN             ', N'Glitterfluff                                                                                        ', N'Sean                                                                                                ', 16, 6, 0, CAST(N'2016-12-23T06:54:58.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (712, N'ASBOGAV             ', N'Simpkin                                                                                             ', N'Arlen                                                                                               ', 2, 4, 0, CAST(N'2016-12-23T06:54:58.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (713, N'GPVQFLN             ', N'Payton                                                                                              ', N'Gears                                                                                               ', 71, 2, 0, CAST(N'2016-12-23T06:54:58.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (714, N'NGLLHNX             ', N'Griffin                                                                                             ', N'Nydia                                                                                               ', 17, 5, 0, CAST(N'2016-12-23T06:54:58.847' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (715, N'GSXCPAR             ', N'Scourge                                                                                             ', N'Gilchrist                                                                                           ', 40, 3, 0, CAST(N'2016-12-23T06:54:59.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (716, N'LAFRTRY             ', N'Animal                                                                                              ', N'Lightspeed                                                                                          ', 11, 3, 0, CAST(N'2016-12-23T06:54:59.277' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (717, N'MKMFVGW             ', N'Kreka                                                                                               ', N'Methoataske                                                                                         ', 20, 1, 0, CAST(N'2016-12-23T06:54:59.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (718, N'KMTNPRR             ', N'Moongaze                                                                                            ', N'Knut                                                                                                ', 28, 6, 0, CAST(N'2016-12-23T06:54:59.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (719, N'GRMVYVP             ', N'Rippersnapper                                                                                       ', N'Goldstar                                                                                            ', 14, 2, 0, CAST(N'2016-12-23T06:54:59.927' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (720, N'JIMSMYW             ', N'Iomhar                                                                                              ', N'Joyce                                                                                               ', 8, 1, 0, CAST(N'2016-12-23T06:55:00.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (721, N'MDIFBSK             ', N'Dulcinea                                                                                            ', N'Methoataske                                                                                         ', 29, 3, 0, CAST(N'2016-12-23T06:55:20.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (722, N'CJDAGJK             ', N'Julitta                                                                                             ', N'Chickenchaser                                                                                       ', 9, 8, 0, CAST(N'2016-12-23T06:55:20.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (723, N'NRDHXDB             ', N'Rippersnapper                                                                                       ', N'Nydia                                                                                               ', 15, 8, 0, CAST(N'2016-12-23T06:55:20.903' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (724, N'AECECNH             ', N'Error                                                                                               ', N'Aleksander                                                                                          ', 3, 2, 0, CAST(N'2016-12-23T06:55:21.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (725, N'PCREGTN             ', N'Cyra                                                                                                ', N'Phoenix                                                                                             ', 52, 8, 0, CAST(N'2016-12-23T06:55:21.333' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (726, N'VINJCOM             ', N'Iomhar                                                                                              ', N'Victor                                                                                              ', 12, 5, 0, CAST(N'2016-12-23T06:55:21.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (727, N'PFOEEDJ             ', N'Force                                                                                               ', N'Pollyanna                                                                                           ', 35, 3, 0, CAST(N'2016-12-23T06:55:21.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (728, N'SAKOSAS             ', N'Allsopp                                                                                             ', N'Shaw                                                                                                ', 6, 4, 0, CAST(N'2016-12-23T06:55:21.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (729, N'MSBITAT             ', N'Stone                                                                                               ', N'Mooncheeks                                                                                          ', 21, 1, 0, CAST(N'2016-12-23T06:55:22.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (730, N'MCENROY             ', N'Carbrey                                                                                             ', N'Marika                                                                                              ', 58, 7, 0, CAST(N'2016-12-23T06:55:22.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (731, N'CKIOTYU             ', N'Kaja                                                                                                ', N'Ceallagh                                                                                            ', 64, 7, 0, CAST(N'2016-12-23T06:55:22.640' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (732, N'HSYMQSC             ', N'Sureshot                                                                                            ', N'Harmony                                                                                             ', 38, 7, 0, CAST(N'2016-12-23T06:55:22.857' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (733, N'HDUOKDX             ', N'Donohoe                                                                                             ', N'Haidee                                                                                              ', 7, 5, 0, CAST(N'2016-12-23T06:55:23.073' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (734, N'TJKVPXK             ', N'Jakeman                                                                                             ', N'Tasgall                                                                                             ', 70, 6, 0, CAST(N'2016-12-23T06:55:23.287' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (735, N'AMMCMXF             ', N'McKenzie                                                                                            ', N'Alfred                                                                                              ', 18, 7, 0, CAST(N'2016-12-23T06:55:23.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (736, N'JSCLKWH             ', N'Sideswipe                                                                                           ', N'Jochim                                                                                              ', 30, 4, 0, CAST(N'2016-12-23T06:55:23.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (737, N'RDLEPGK             ', N'Dulcinea                                                                                            ', N'Riina                                                                                               ', 10, 1, 0, CAST(N'2016-12-23T06:55:23.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (738, N'LAUABAF             ', N'Amsel                                                                                               ', N'Lightspeed                                                                                          ', 41, 8, 0, CAST(N'2016-12-23T06:55:24.147' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (739, N'TSQVINN             ', N'Starscream                                                                                          ', N'Tasgall                                                                                             ', 4, 6, 0, CAST(N'2016-12-23T06:55:24.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (740, N'AGTNNDI             ', N'Gears                                                                                               ', N'Alodia                                                                                              ', 19, 5, 0, CAST(N'2016-12-23T06:55:24.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (741, N'KPMGRLI             ', N'Peacespirit                                                                                         ', N'Kim                                                                                                 ', 36, 7, 0, CAST(N'2016-12-23T06:55:24.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (742, N'MAHCGKF             ', N'Alberts                                                                                             ', N'Marika                                                                                              ', 13, 5, 0, CAST(N'2016-12-23T06:55:25.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (743, N'DSEWQXB             ', N'Seedfarmer                                                                                          ', N'Dolly-Sue                                                                                           ', 42, 8, 0, CAST(N'2016-12-23T06:55:25.233' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (744, N'MKNQRMW             ', N'Kaisa                                                                                               ', N'Marika                                                                                              ', 5, 2, 0, CAST(N'2016-12-23T06:55:25.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (745, N'BDREMNT             ', N'Dulcinea                                                                                            ', N'Bertram                                                                                             ', 39, 6, 0, CAST(N'2016-12-23T06:55:25.653' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (746, N'VJCIIAA             ', N'Jazz                                                                                                ', N'Viktoria                                                                                            ', 33, 4, 0, CAST(N'2016-12-23T06:55:25.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (747, N'SAGOERS             ', N'Alberts                                                                                             ', N'Sally                                                                                               ', 16, 4, 0, CAST(N'2016-12-23T06:55:26.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (748, N'JAMUFCJ             ', N'Allsopp                                                                                             ', N'Jochim                                                                                              ', 2, 1, 0, CAST(N'2016-12-23T06:55:26.303' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (749, N'GMLQCWJ             ', N'Marcas                                                                                              ', N'Gears                                                                                               ', 71, 2, 0, CAST(N'2016-12-23T06:55:26.517' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (750, N'GZMNQHV             ', N'Zuleika                                                                                             ', N'Gentlegleam                                                                                         ', 17, 8, 0, CAST(N'2016-12-23T06:55:26.733' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (751, N'KFIYLAN             ', N'Flutternose                                                                                         ', N'Kerr                                                                                                ', 40, 5, 0, CAST(N'2016-12-23T06:55:26.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (752, N'WNDYYIA             ', N'Nevin                                                                                               ', N'Webster                                                                                             ', 11, 5, 0, CAST(N'2016-12-23T06:55:27.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (753, N'LGBJEYC             ', N'Griffin                                                                                             ', N'Loyd                                                                                                ', 20, 1, 0, CAST(N'2016-12-23T06:55:27.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (754, N'HQLEXGE             ', N'Quickberry                                                                                          ', N'Haidee                                                                                              ', 28, 5, 0, CAST(N'2016-12-23T06:55:27.600' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (755, N'FPHKCNH             ', N'Pocahontas                                                                                          ', N'Flitterstar                                                                                         ', 14, 3, 0, CAST(N'2016-12-23T06:55:27.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (756, N'GSMEMBR             ', N'Sugarfeather                                                                                        ', N'Gobnata                                                                                             ', 8, 6, 0, CAST(N'2016-12-23T06:55:28.037' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (757, N'MKVWTFK             ', N'Koenig                                                                                              ', N'Maitland                                                                                            ', 29, 2, 0, CAST(N'2016-12-23T06:55:48.167' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (758, N'KRUERGV             ', N'Ruairi                                                                                              ', N'Kerr                                                                                                ', 9, 5, 0, CAST(N'2016-12-23T06:55:48.377' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (759, N'PRTPDXU             ', N'Rock                                                                                                ', N'Pounce                                                                                              ', 15, 1, 0, CAST(N'2016-12-23T06:55:48.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (760, N'PNXTKEL             ', N'Nita                                                                                                ', N'Pollyanna                                                                                           ', 3, 8, 0, CAST(N'2016-12-23T06:55:48.817' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (761, N'RLONAHD             ', N'Leelo                                                                                               ', N'Runabout                                                                                            ', 52, 6, 0, CAST(N'2016-12-23T06:55:49.017' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (762, N'CRWYBGU             ', N'Ruairi                                                                                              ', N'Clearkiss                                                                                           ', 12, 1, 0, CAST(N'2016-12-23T06:55:49.283' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (763, N'SFBXBRF             ', N'Fantine                                                                                             ', N'Sean                                                                                                ', 35, 8, 0, CAST(N'2016-12-23T06:55:49.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (764, N'RWHPRTK             ', N'Warrick                                                                                             ', N'Runabout                                                                                            ', 6, 4, 0, CAST(N'2016-12-23T06:55:49.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (765, N'TKOMLMW             ', N'Kaisa                                                                                               ', N'Tasgall                                                                                             ', 21, 8, 0, CAST(N'2016-12-23T06:55:50.033' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (766, N'KJVRXKK             ', N'Julitta                                                                                             ', N'Kermit                                                                                              ', 58, 3, 0, CAST(N'2016-12-23T06:55:50.247' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (767, N'KPSWHCB             ', N'Pocahontas                                                                                          ', N'Kerr                                                                                                ', 64, 7, 0, CAST(N'2016-12-23T06:55:50.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (768, N'GPADOOM             ', N'Prowl                                                                                               ', N'Goldshy                                                                                             ', 38, 7, 0, CAST(N'2016-12-23T06:55:50.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (769, N'GQYNAEI             ', N'Quickberry                                                                                          ', N'Gilchrist                                                                                           ', 7, 2, 0, CAST(N'2016-12-23T06:55:50.883' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (770, N'GGBWEKG             ', N'Gentlemoon                                                                                          ', N'Grapple                                                                                             ', 70, 6, 0, CAST(N'2016-12-23T06:55:51.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (771, N'FANMKRW             ', N'Alberts                                                                                             ', N'Forest                                                                                              ', 18, 2, 0, CAST(N'2016-12-23T06:55:51.333' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (772, N'AUXHFEG             ', N'Ulalume                                                                                             ', N'Arcana                                                                                              ', 30, 2, 0, CAST(N'2016-12-23T06:55:51.567' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (773, N'KSKOOER             ', N'Studwick                                                                                            ', N'Kateri                                                                                              ', 10, 6, 0, CAST(N'2016-12-23T06:55:51.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (774, N'QKDPVXM             ', N'Kaisa                                                                                               ', N'Queen                                                                                               ', 41, 4, 0, CAST(N'2016-12-23T06:55:52.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (775, N'GQGGQUP             ', N'Quickberry                                                                                          ', N'Gigglering                                                                                          ', 4, 1, 0, CAST(N'2016-12-23T06:55:52.267' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (776, N'TWLWPXU             ', N'Woods                                                                                               ', N'Titania                                                                                             ', 19, 7, 0, CAST(N'2016-12-23T06:55:52.477' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (777, N'SPPJURO             ', N'Pocahontas                                                                                          ', N'Sweetwing                                                                                           ', 36, 3, 0, CAST(N'2016-12-23T06:55:52.703' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (778, N'SFCYTRP             ', N'Fraser                                                                                              ', N'Scourge                                                                                             ', 13, 5, 0, CAST(N'2016-12-23T06:55:52.937' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (779, N'AJPPXOY             ', N'Junge                                                                                               ', N'Arcana                                                                                              ', 42, 2, 0, CAST(N'2016-12-23T06:55:53.220' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (780, N'FGEFTCO             ', N'Gentlemoon                                                                                          ', N'Flitterstar                                                                                         ', 5, 8, 0, CAST(N'2016-12-23T06:55:53.433' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (781, N'DSWOQHK             ', N'Sempers                                                                                             ', N'Dolly-Sue                                                                                           ', 39, 2, 0, CAST(N'2016-12-23T06:55:53.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (782, N'ACHSHAJ             ', N'Cyra                                                                                                ', N'Arlen                                                                                               ', 33, 5, 0, CAST(N'2016-12-23T06:55:53.857' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (783, N'KWMBJOB             ', N'Warrick                                                                                             ', N'Kerr                                                                                                ', 16, 8, 0, CAST(N'2016-12-23T06:55:54.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (784, N'CCXYKVQ             ', N'Clarkson                                                                                            ', N'C emgein                                                                                            ', 2, 6, 0, CAST(N'2016-12-23T06:55:54.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (785, N'TROHESH             ', N'Ranald                                                                                              ', N'Twinkleleaf                                                                                         ', 71, 7, 0, CAST(N'2016-12-23T06:55:54.507' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (786, N'DNJDUGP             ', N'Naira                                                                                               ', N'Defensor                                                                                            ', 17, 7, 0, CAST(N'2016-12-23T06:55:54.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (787, N'QNVHMSP             ', N'Naira                                                                                               ', N'Queen                                                                                               ', 40, 3, 0, CAST(N'2016-12-23T06:55:54.933' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (788, N'AABKCQR             ', N'Allsopp                                                                                             ', N'Arcana                                                                                              ', 11, 6, 0, CAST(N'2016-12-23T06:55:55.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (789, N'BRUTTNV             ', N'Roxelana                                                                                            ', N'Barleyfarmer                                                                                        ', 20, 6, 0, CAST(N'2016-12-23T06:55:55.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (790, N'CKJRJPA             ', N'Keith                                                                                               ', N'Corona                                                                                              ', 28, 1, 0, CAST(N'2016-12-23T06:55:55.660' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (791, N'GJGURXR             ', N'Jazz                                                                                                ', N'Gobnata                                                                                             ', 14, 8, 0, CAST(N'2016-12-23T06:55:55.873' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (792, N'GCURLCM             ', N'Calfuray                                                                                            ', N'Goldstar                                                                                            ', 8, 6, 0, CAST(N'2016-12-23T06:55:56.087' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (793, N'KMBUKFM             ', N'MacClelland                                                                                         ', N'Knut                                                                                                ', 29, 6, 0, CAST(N'2016-12-23T06:56:11.277' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (794, N'WQIIKMN             ', N'Quickleaf                                                                                           ', N'Webster                                                                                             ', 9, 2, 0, CAST(N'2016-12-23T06:56:11.497' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (795, N'RSROMXS             ', N'Simpkin                                                                                             ', N'Ross                                                                                                ', 15, 7, 0, CAST(N'2016-12-23T06:56:11.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (796, N'AACFIHC             ', N'Amsel                                                                                               ', N'Aleksander                                                                                          ', 3, 1, 0, CAST(N'2016-12-23T06:56:11.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (797, N'AJIMNFB             ', N'Jazz                                                                                                ', N'Aloysius                                                                                            ', 52, 7, 0, CAST(N'2016-12-23T06:56:12.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (798, N'FAPFMRJ             ', N'Animal                                                                                              ', N'Fergus                                                                                              ', 12, 7, 0, CAST(N'2016-12-23T06:56:12.337' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (799, N'FGBDCOV             ', N'Golddust                                                                                            ', N'Fergus                                                                                              ', 35, 3, 0, CAST(N'2016-12-23T06:56:12.693' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (800, N'SKHBGJM             ', N'Kaisa                                                                                               ', N'Sweetstar                                                                                           ', 6, 4, 0, CAST(N'2016-12-23T06:56:13.037' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (801, N'ECOMNRD             ', N'Clarkson                                                                                            ', N'Elsdon                                                                                              ', 21, 8, 0, CAST(N'2016-12-23T06:56:13.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (802, N'TNOJUNA             ', N'Naira                                                                                               ', N'Tasgall                                                                                             ', 58, 3, 0, CAST(N'2016-12-23T06:56:13.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (803, N'PIGTQEP             ', N'Ibbott                                                                                              ', N'Pipaluk                                                                                             ', 64, 3, 0, CAST(N'2016-12-23T06:56:13.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (804, N'ASHFRDV             ', N'Sugarfeather                                                                                        ', N'Almira                                                                                              ', 38, 1, 0, CAST(N'2016-12-23T06:56:14.220' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (805, N'RTBIYCI             ', N'Tyrrell                                                                                             ', N'Ross                                                                                                ', 7, 1, 0, CAST(N'2016-12-23T06:56:14.483' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (806, N'REYTAXY             ', N'Error                                                                                               ', N'Rollo                                                                                               ', 70, 5, 0, CAST(N'2016-12-23T06:56:14.713' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (807, N'SCNJWER             ', N'Cyra                                                                                                ', N'Sleek                                                                                               ', 18, 6, 0, CAST(N'2016-12-23T06:56:14.947' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (808, N'HBEKMRW             ', N'Blake                                                                                               ', N'Harmony                                                                                             ', 30, 3, 0, CAST(N'2016-12-23T06:56:15.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (809, N'DJADLOR             ', N'Jacobson                                                                                            ', N'Devastator                                                                                          ', 10, 5, 0, CAST(N'2016-12-23T06:56:15.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (810, N'HGQJFCT             ', N'Glittercloud                                                                                        ', N'Harmony                                                                                             ', 41, 3, 0, CAST(N'2016-12-23T06:56:15.627' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (811, N'KEIVQIT             ', N'Error                                                                                               ', N'Kim                                                                                                 ', 4, 4, 0, CAST(N'2016-12-23T06:56:15.853' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (812, N'OSUGWSU             ', N'Sparklemoon                                                                                         ', N'Oatchaser                                                                                           ', 19, 6, 0, CAST(N'2016-12-23T06:56:16.077' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (813, N'DFAXRID             ', N'Fantine                                                                                             ', N'Defensor                                                                                            ', 36, 6, 0, CAST(N'2016-12-23T06:56:16.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (814, N'JJICQFB             ', N'Jacobson                                                                                            ', N'Jellygleam                                                                                          ', 13, 7, 0, CAST(N'2016-12-23T06:56:16.517' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (815, N'MKWRIBC             ', N'Kateri                                                                                              ', N'Marika                                                                                              ', 42, 4, 0, CAST(N'2016-12-23T06:56:16.737' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (816, N'AIUWOOB             ', N'Iomhar                                                                                              ', N'Alasdair                                                                                            ', 5, 4, 0, CAST(N'2016-12-23T06:56:16.947' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (817, N'FHPYSXJ             ', N'Hawking                                                                                             ', N'Fluttersheen                                                                                        ', 39, 1, 0, CAST(N'2016-12-23T06:56:17.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (818, N'SDXOEBT             ', N'Donohoe                                                                                             ', N'Sean                                                                                                ', 33, 1, 0, CAST(N'2016-12-23T06:56:17.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (819, N'AQCYVGJ             ', N'Quickmoon                                                                                           ', N'Aloysius                                                                                            ', 16, 8, 0, CAST(N'2016-12-23T06:56:17.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (820, N'AMYSBGJ             ', N'Marcas                                                                                              ', N'Aleksander                                                                                          ', 2, 4, 0, CAST(N'2016-12-23T06:56:17.883' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (821, N'DVSYHFF             ', N'Viktoria                                                                                            ', N'Devastator                                                                                          ', 71, 8, 0, CAST(N'2016-12-23T06:56:18.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (822, N'MSNTDOK             ', N'Snowfeather                                                                                         ', N'Maitland                                                                                            ', 17, 8, 0, CAST(N'2016-12-23T06:56:18.327' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (823, N'DGHJPUX             ', N'Golddust                                                                                            ', N'David                                                                                               ', 40, 3, 0, CAST(N'2016-12-23T06:56:18.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (824, N'KWDQFRI             ', N'Wheeljack                                                                                           ', N'Kadri                                                                                               ', 11, 4, 0, CAST(N'2016-12-23T06:56:18.753' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (825, N'NSIVTXY             ', N'Schmid                                                                                              ', N'Nydia                                                                                               ', 20, 3, 0, CAST(N'2016-12-23T06:56:18.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (826, N'GJPJIDM             ', N'Jazz                                                                                                ', N'Gobnata                                                                                             ', 28, 6, 0, CAST(N'2016-12-23T06:56:19.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (827, N'SLEXBBV             ', N'Lashawnda                                                                                           ', N'Scourge                                                                                             ', 14, 3, 0, CAST(N'2016-12-23T06:56:19.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (828, N'ASKUKRJ             ', N'Scavenger                                                                                           ', N'Arden                                                                                               ', 8, 8, 0, CAST(N'2016-12-23T06:56:19.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (829, N'KPVQXWA             ', N'Potatochaser                                                                                        ', N'Katariina                                                                                           ', 29, 4, 0, CAST(N'2016-12-23T06:56:23.527' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (830, N'BKABOVK             ', N'Keith                                                                                               ', N'Blair                                                                                               ', 9, 5, 0, CAST(N'2016-12-23T06:56:23.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (831, N'RSLDEVY             ', N'Siiri                                                                                               ', N'Rein                                                                                                ', 15, 4, 0, CAST(N'2016-12-23T06:56:23.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (832, N'PPPCVKW             ', N'Philomel                                                                                            ', N'Perceptor                                                                                           ', 3, 5, 0, CAST(N'2016-12-23T06:56:24.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (833, N'GKYTLQP             ', N'Kristiina                                                                                           ', N'Goldstar                                                                                            ', 52, 1, 0, CAST(N'2016-12-23T06:56:24.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (834, N'LIWDCND             ', N'Itzel                                                                                               ', N'Loviise                                                                                             ', 12, 7, 0, CAST(N'2016-12-23T06:56:24.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (835, N'FQSYQLQ             ', N'Quickberry                                                                                          ', N'Forest                                                                                              ', 35, 6, 0, CAST(N'2016-12-23T06:56:24.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (836, N'TDWPDYM             ', N'Da''ronda                                                                                            ', N'Tasgall                                                                                             ', 6, 7, 0, CAST(N'2016-12-23T06:56:25.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (837, N'CSJTNCB             ', N'Scavenger                                                                                           ', N'C emgein                                                                                            ', 21, 2, 0, CAST(N'2016-12-23T06:56:25.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (838, N'LTJBXBV             ', N'Tyrrell                                                                                             ', N'Lightspeed                                                                                          ', 58, 8, 0, CAST(N'2016-12-23T06:56:25.653' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (839, N'SGEMDUS             ', N'Gentlemoon                                                                                          ', N'Silvernose                                                                                          ', 64, 7, 0, CAST(N'2016-12-23T06:56:25.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (840, N'PJSWQIU             ', N'Jakeman                                                                                             ', N'Pipaluk                                                                                             ', 38, 8, 0, CAST(N'2016-12-23T06:56:26.077' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (841, N'RTDQXMV             ', N'Tyrrell                                                                                             ', N'Rein                                                                                                ', 7, 3, 0, CAST(N'2016-12-23T06:56:26.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (842, N'CGYVTGD             ', N'Glitterfluff                                                                                        ', N'Crush                                                                                               ', 70, 7, 0, CAST(N'2016-12-23T06:56:26.560' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (843, N'AQGNBRW             ', N'Quickberry                                                                                          ', N'Assassin                                                                                            ', 18, 2, 0, CAST(N'2016-12-23T06:56:26.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (844, N'SZOBFYP             ', N'Zuleika                                                                                             ', N'Sofia                                                                                               ', 30, 6, 0, CAST(N'2016-12-23T06:56:27.007' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (845, N'FSRQPVK             ', N'Seedfarmer                                                                                          ', N'Fergus                                                                                              ', 10, 2, 0, CAST(N'2016-12-23T06:56:27.220' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (846, N'GHKMTTF             ', N'Hofmann                                                                                             ', N'Gilchrist                                                                                           ', 41, 3, 0, CAST(N'2016-12-23T06:56:27.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (847, N'SGEKSTO             ', N'Golddust                                                                                            ', N'Scotty                                                                                              ', 4, 1, 0, CAST(N'2016-12-23T06:56:27.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (848, N'KKLAGCO             ', N'Kreka                                                                                               ', N'Katariina                                                                                           ', 19, 4, 0, CAST(N'2016-12-23T06:56:27.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (849, N'WNBJDVO             ', N'Nita                                                                                                ', N'Wingspan                                                                                            ', 36, 6, 0, CAST(N'2016-12-23T06:56:28.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (850, N'KRSUUYR             ', N'Rippersnapper                                                                                       ', N'Kateri                                                                                              ', 13, 4, 0, CAST(N'2016-12-23T06:56:28.303' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (851, N'PBFWCOC             ', N'Badcock                                                                                             ', N'Pollyanna                                                                                           ', 42, 5, 0, CAST(N'2016-12-23T06:56:28.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (852, N'FOUIXJW             ', N'Ogden                                                                                               ', N'Flitterstar                                                                                         ', 5, 7, 0, CAST(N'2016-12-23T06:56:28.753' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (853, N'AKMHVAR             ', N'Kristiina                                                                                           ', N'Alasdair                                                                                            ', 39, 1, 0, CAST(N'2016-12-23T06:56:28.963' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (854, N'WARMHVA             ', N'Albert                                                                                              ', N'Webster                                                                                             ', 33, 1, 0, CAST(N'2016-12-23T06:56:29.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (855, N'FPULGNF             ', N'Philomel                                                                                            ', N'Flitterstar                                                                                         ', 16, 8, 0, CAST(N'2016-12-23T06:56:29.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (856, N'DAKJWXP             ', N'Alberts                                                                                             ', N'Dirtgreaser                                                                                         ', 2, 4, 0, CAST(N'2016-12-23T06:56:29.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (857, N'SCLFFBW             ', N'Clarkson                                                                                            ', N'Sleek                                                                                               ', 71, 1, 0, CAST(N'2016-12-23T06:56:29.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (858, N'CAVXIVG             ', N'Andersen                                                                                            ', N'Clearkiss                                                                                           ', 17, 2, 0, CAST(N'2016-12-23T06:56:30.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (859, N'PMOXBWL             ', N'Maoilios                                                                                            ', N'Pollyanna                                                                                           ', 40, 4, 0, CAST(N'2016-12-23T06:56:30.270' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (860, N'PSCSVUG             ', N'Sugarkiss                                                                                           ', N'Pigplanter                                                                                          ', 11, 4, 0, CAST(N'2016-12-23T06:56:30.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (861, N'FSGTOEX             ', N'Scourge                                                                                             ', N'Flitterstar                                                                                         ', 20, 3, 0, CAST(N'2016-12-23T06:56:30.733' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (862, N'SGVNCRN             ', N'Gears                                                                                               ', N'Sweetstar                                                                                           ', 28, 1, 0, CAST(N'2016-12-23T06:56:30.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (863, N'SMDNTTE             ', N'Moongaze                                                                                            ', N'Sheard                                                                                              ', 14, 5, 0, CAST(N'2016-12-23T06:56:31.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (864, N'TCGAQWA             ', N'Clarkson                                                                                            ', N'Titania                                                                                             ', 8, 5, 0, CAST(N'2016-12-23T06:56:31.393' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (865, N'DWFWAVT             ', N'Woods                                                                                               ', N'Daniel                                                                                              ', 29, 3, 0, CAST(N'2016-12-23T06:56:39.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (866, N'QOCVUVS             ', N'Optimus                                                                                             ', N'Queen                                                                                               ', 9, 2, 0, CAST(N'2016-12-23T06:56:40.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (867, N'BBGMYCX             ', N'Biceps                                                                                              ', N'Beeatriks                                                                                           ', 15, 8, 0, CAST(N'2016-12-23T06:56:40.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (868, N'KDGVPFQ             ', N'Dulcinea                                                                                            ', N'Kim                                                                                                 ', 3, 6, 0, CAST(N'2016-12-23T06:56:40.567' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (869, N'JWJHLLC             ', N'Woods                                                                                               ', N'Jeremiah                                                                                            ', 52, 6, 0, CAST(N'2016-12-23T06:56:40.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (870, N'PSITHUC             ', N'Simpkin                                                                                             ', N'Peggy-Rae                                                                                           ', 12, 5, 0, CAST(N'2016-12-23T06:56:41.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (871, N'PSCDXCC             ', N'Sparklemoon                                                                                         ', N'Pipaluk                                                                                             ', 35, 6, 0, CAST(N'2016-12-23T06:56:41.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (872, N'JGSWECL             ', N'Glittercloud                                                                                        ', N'Jochim                                                                                              ', 6, 5, 0, CAST(N'2016-12-23T06:56:41.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (873, N'ATBTJGA             ', N'Twinkleeyes                                                                                         ', N'Aloysius                                                                                            ', 21, 8, 0, CAST(N'2016-12-23T06:56:41.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (874, N'NMGKSAB             ', N'McNaughton                                                                                          ', N'Nydia                                                                                               ', 58, 7, 0, CAST(N'2016-12-23T06:56:41.907' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (875, N'CHDGESP             ', N'Hanley                                                                                              ', N'Chickenfarmer                                                                                       ', 64, 8, 0, CAST(N'2016-12-23T06:56:42.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (876, N'CSWFHTR             ', N'Simpkin                                                                                             ', N'Corona                                                                                              ', 38, 8, 0, CAST(N'2016-12-23T06:56:42.333' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (877, N'AAEVCYH             ', N'Allsopp                                                                                             ', N'Aurel                                                                                               ', 7, 6, 0, CAST(N'2016-12-23T06:56:42.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (878, N'AMXSVKY             ', N'Mirjam                                                                                              ', N'Atomic                                                                                              ', 70, 2, 0, CAST(N'2016-12-23T06:56:42.763' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (879, N'CSMHEMF             ', N'Siiri                                                                                               ', N'Crippler                                                                                            ', 18, 6, 0, CAST(N'2016-12-23T06:56:42.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (880, N'SJYLRTC             ', N'Jeffers                                                                                             ', N'Sacnite                                                                                             ', 30, 8, 0, CAST(N'2016-12-23T06:56:43.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (881, N'ABYEYNI             ', N'Breakdown                                                                                           ', N'Ayelen                                                                                              ', 10, 1, 0, CAST(N'2016-12-23T06:56:43.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (882, N'BRFMFCJ             ', N'Rock                                                                                                ', N'Blair                                                                                               ', 41, 6, 0, CAST(N'2016-12-23T06:56:43.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (883, N'AKXRPJB             ', N'Kaisa                                                                                               ', N'Alodia                                                                                              ', 4, 4, 0, CAST(N'2016-12-23T06:56:43.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (884, N'NACEQWT             ', N'Allsopp                                                                                             ', N'Nydia                                                                                               ', 19, 1, 0, CAST(N'2016-12-23T06:56:44.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (885, N'PMWYYCK             ', N'Marika                                                                                              ', N'Powerglide                                                                                          ', 36, 2, 0, CAST(N'2016-12-23T06:56:44.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (886, N'FSYWCYQ             ', N'Scourge                                                                                             ', N'Flitterstar                                                                                         ', 13, 6, 0, CAST(N'2016-12-23T06:56:44.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (887, N'JSUOCPC             ', N'School                                                                                              ', N'Jellygleam                                                                                          ', 42, 8, 0, CAST(N'2016-12-23T06:56:44.757' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (888, N'SAXIRDH             ', N'Age                                                                                                 ', N'Sheard                                                                                              ', 5, 8, 0, CAST(N'2016-12-23T06:56:44.977' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (889, N'JCVVGKG             ', N'Cyra                                                                                                ', N'Jochim                                                                                              ', 39, 4, 0, CAST(N'2016-12-23T06:56:45.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (890, N'ABACMAT             ', N'Blake                                                                                               ', N'Alodia                                                                                              ', 33, 1, 0, CAST(N'2016-12-23T06:56:45.397' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (891, N'CMSHVBE             ', N'Marika                                                                                              ', N'Crippler                                                                                            ', 16, 4, 0, CAST(N'2016-12-23T06:56:45.607' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (892, N'SGSVODC             ', N'Gears                                                                                               ', N'Sean                                                                                                ', 2, 4, 0, CAST(N'2016-12-23T06:56:45.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (893, N'PKYJIQQ             ', N'Kristiina                                                                                           ', N'Potatosower                                                                                         ', 71, 6, 0, CAST(N'2016-12-23T06:56:46.023' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (894, N'SNJXNOH             ', N'Nita                                                                                                ', N'Sacnite                                                                                             ', 17, 3, 0, CAST(N'2016-12-23T06:56:46.237' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (895, N'SPPTQVD             ', N'Potatochaser                                                                                        ', N'Sean                                                                                                ', 40, 1, 0, CAST(N'2016-12-23T06:56:46.447' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (896, N'ASYVABV             ', N'Sparklemoon                                                                                         ', N'Alasdair                                                                                            ', 11, 5, 0, CAST(N'2016-12-23T06:56:46.660' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (897, N'KDMBPGS             ', N'Dazzlegaze                                                                                          ', N'Kadri                                                                                               ', 20, 3, 0, CAST(N'2016-12-23T06:56:46.877' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (898, N'BSTDNGA             ', N'Saunders                                                                                            ', N'Barleyfarmer                                                                                        ', 28, 8, 0, CAST(N'2016-12-23T06:56:47.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (899, N'DJECFFO             ', N'Julitta                                                                                             ', N'Double                                                                                              ', 14, 4, 0, CAST(N'2016-12-23T06:56:47.313' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (900, N'DMWHCAI             ', N'Miles                                                                                               ', N'Defensor                                                                                            ', 8, 4, 0, CAST(N'2016-12-23T06:56:47.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (901, N'MJEMURA             ', N'Jakeman                                                                                             ', N'Mirjam                                                                                              ', 29, 3, 0, CAST(N'2016-12-23T06:56:51.420' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (902, N'PSOFUSS             ', N'Seedfarmer                                                                                          ', N'Punch                                                                                               ', 9, 8, 0, CAST(N'2016-12-23T06:56:51.627' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (903, N'SGIOCEP             ', N'Gears                                                                                               ', N'Snowdance                                                                                           ', 15, 2, 0, CAST(N'2016-12-23T06:56:51.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (904, N'CFMHYFL             ', N'Fraser                                                                                              ', N'Crush                                                                                               ', 3, 3, 0, CAST(N'2016-12-23T06:56:52.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (905, N'LDHBJXF             ', N'Dulcinea                                                                                            ', N'Loyd                                                                                                ', 52, 7, 0, CAST(N'2016-12-23T06:56:52.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (906, N'LSTXJUO             ', N'Seedfarmer                                                                                          ', N'Loviise                                                                                             ', 12, 4, 0, CAST(N'2016-12-23T06:56:52.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (907, N'VKCAVPW             ', N'Koenig                                                                                              ', N'Victor                                                                                              ', 35, 4, 0, CAST(N'2016-12-23T06:56:52.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (908, N'AKYJTMI             ', N'Keith                                                                                               ', N'Ailpein                                                                                             ', 6, 5, 0, CAST(N'2016-12-23T06:56:53.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (909, N'SSXKIFX             ', N'Snowfeather                                                                                         ', N'Sally                                                                                               ', 21, 7, 0, CAST(N'2016-12-23T06:56:53.237' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (910, N'MMIRSOA             ', N'Moongaze                                                                                            ', N'Maitland                                                                                            ', 58, 4, 0, CAST(N'2016-12-23T06:56:53.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (911, N'PAQQDWH             ', N'Andersen                                                                                            ', N'Pigplanter                                                                                          ', 64, 4, 0, CAST(N'2016-12-23T06:56:53.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (912, N'JTEGOTI             ', N'T hirih                                                                                             ', N'Joyce                                                                                               ', 38, 5, 0, CAST(N'2016-12-23T06:56:53.883' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (913, N'ESVVBBK             ', N'Sparklemoon                                                                                         ', N'Elsdon                                                                                              ', 7, 7, 0, CAST(N'2016-12-23T06:56:54.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (914, N'GMHKIIK             ', N'Miles                                                                                               ', N'Gumphauler                                                                                          ', 70, 1, 0, CAST(N'2016-12-23T06:56:54.327' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (915, N'MMMACWJ             ', N'McNaughton                                                                                          ', N'Mirjam                                                                                              ', 18, 6, 0, CAST(N'2016-12-23T06:56:54.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (916, N'FMBNJDU             ', N'Marcas                                                                                              ', N'Forest                                                                                              ', 30, 7, 0, CAST(N'2016-12-23T06:56:54.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (917, N'JPBOFGC             ', N'Pocahontas                                                                                          ', N'Jemmy                                                                                               ', 10, 1, 0, CAST(N'2016-12-23T06:56:54.977' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (918, N'QKCUVMI             ', N'Kaisa                                                                                               ', N'Queen                                                                                               ', 41, 5, 0, CAST(N'2016-12-23T06:56:55.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (919, N'EKMYLJS             ', N'Koenig                                                                                              ', N'Elsdon                                                                                              ', 4, 4, 0, CAST(N'2016-12-23T06:56:55.423' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (920, N'TCREOON             ', N'Carbrey                                                                                             ', N'Tasgall                                                                                             ', 19, 2, 0, CAST(N'2016-12-23T06:56:55.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (921, N'PJBFXCL             ', N'Jeffers                                                                                             ', N'Pounce                                                                                              ', 36, 7, 0, CAST(N'2016-12-23T06:56:55.887' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (922, N'ASWNFUU             ', N'Schmid                                                                                              ', N'Alasdair                                                                                            ', 13, 5, 0, CAST(N'2016-12-23T06:56:56.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (923, N'DSYRVUE             ', N'Stone                                                                                               ', N'Defensor                                                                                            ', 42, 3, 0, CAST(N'2016-12-23T06:56:56.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (924, N'ROFNHRW             ', N'Optimus                                                                                             ', N'Ross                                                                                                ', 5, 8, 0, CAST(N'2016-12-23T06:56:56.600' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (925, N'OIGKMPM             ', N'Ibbott                                                                                              ', N'Oatchaser                                                                                           ', 39, 5, 0, CAST(N'2016-12-23T06:56:56.823' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (926, N'GSNVIAA             ', N'School                                                                                              ', N'Gilchrist                                                                                           ', 33, 2, 0, CAST(N'2016-12-23T06:56:57.053' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (927, N'GGIGBQU             ', N'Glittercloud                                                                                        ', N'Gigglering                                                                                          ', 16, 6, 0, CAST(N'2016-12-23T06:56:57.310' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (928, N'GSVFPHN             ', N'Sugarfeather                                                                                        ', N'Gigglering                                                                                          ', 2, 5, 0, CAST(N'2016-12-23T06:56:57.547' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (929, N'CPTJEIN             ', N'Peacespirit                                                                                         ', N'Chickenchaser                                                                                       ', 71, 8, 0, CAST(N'2016-12-23T06:56:57.823' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (930, N'DSAFNDU             ', N'Siiri                                                                                               ', N'David                                                                                               ', 17, 3, 0, CAST(N'2016-12-23T06:56:58.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (931, N'CMYPOSE             ', N'McRae                                                                                               ', N'Clearkiss                                                                                           ', 40, 7, 0, CAST(N'2016-12-23T06:56:58.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (932, N'PSPFIUM             ', N'Seedfarmer                                                                                          ', N'Powerglide                                                                                          ', 11, 6, 0, CAST(N'2016-12-23T06:56:58.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (933, N'AOMARBO             ', N'Ogden                                                                                               ', N'Alfred                                                                                              ', 20, 1, 0, CAST(N'2016-12-23T06:56:58.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (934, N'HPDSJJB             ', N'Pocahontas                                                                                          ', N'Highbrow                                                                                            ', 28, 5, 0, CAST(N'2016-12-23T06:56:59.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (935, N'SGIAFIN             ', N'Glittercloud                                                                                        ', N'Sleek                                                                                               ', 14, 2, 0, CAST(N'2016-12-23T06:56:59.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (936, N'GKNFRUV             ', N'Kreka                                                                                               ', N'Gobnata                                                                                             ', 8, 6, 0, CAST(N'2016-12-23T06:56:59.723' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (937, N'ASDNRPN             ', N'School                                                                                              ', N'Aurel                                                                                               ', 29, 2, 0, CAST(N'2016-12-23T06:57:15.610' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (938, N'BNVQIHQ             ', N'Nita                                                                                                ', N'Barleyfarmer                                                                                        ', 9, 5, 0, CAST(N'2016-12-23T06:57:15.823' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (939, N'WJAJOLB             ', N'Jeffers                                                                                             ', N'Webster                                                                                             ', 15, 7, 0, CAST(N'2016-12-23T06:57:16.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (940, N'DSCSYGG             ', N'Sugarkiss                                                                                           ', N'Douglas                                                                                             ', 3, 5, 0, CAST(N'2016-12-23T06:57:16.247' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (941, N'VKNSTKW             ', N'Kaisa                                                                                               ', N'Victor                                                                                              ', 52, 4, 0, CAST(N'2016-12-23T06:57:16.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (942, N'SAEPEFN             ', N'Andersen                                                                                            ', N'Scotty                                                                                              ', 12, 5, 0, CAST(N'2016-12-23T06:57:16.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (943, N'SCQQMXA             ', N'Carbrey                                                                                             ', N'Sheard                                                                                              ', 35, 7, 0, CAST(N'2016-12-23T06:57:17.153' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (944, N'RKXOKRJ             ', N'Koenig                                                                                              ', N'Rollo                                                                                               ', 6, 5, 0, CAST(N'2016-12-23T06:57:17.373' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (945, N'GELOLFC             ', N'Error                                                                                               ', N'Gobnata                                                                                             ', 21, 7, 0, CAST(N'2016-12-23T06:57:17.613' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (946, N'OMLVELN             ', N'McKenzie                                                                                            ', N'Overkill                                                                                            ', 58, 2, 0, CAST(N'2016-12-23T06:57:18.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (947, N'POHORYX             ', N'Optimus                                                                                             ', N'Potatosower                                                                                         ', 64, 7, 0, CAST(N'2016-12-23T06:57:18.377' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (948, N'GMSMFOM             ', N'Moongaze                                                                                            ', N'Gobnata                                                                                             ', 38, 1, 0, CAST(N'2016-12-23T06:57:18.593' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (949, N'DSHLNQI             ', N'Scourge                                                                                             ', N'Dirtgreaser                                                                                         ', 7, 6, 0, CAST(N'2016-12-23T06:57:18.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (950, N'ROALAEU             ', N'Ogden                                                                                               ', N'Rollo                                                                                               ', 70, 1, 0, CAST(N'2016-12-23T06:57:19.023' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (951, N'HSPLQOA             ', N'Siiri                                                                                               ', N'Highbrow                                                                                            ', 18, 6, 0, CAST(N'2016-12-23T06:57:19.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (952, N'ZCWWJCF             ', N'Calfuray                                                                                            ', N'Zyanya                                                                                              ', 30, 3, 0, CAST(N'2016-12-23T06:57:19.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (953, N'AKVQGBH             ', N'Kaisa                                                                                               ', N'Atomic                                                                                              ', 10, 8, 0, CAST(N'2016-12-23T06:57:19.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (954, N'ABPNQDI             ', N'Baphomet                                                                                            ', N'Arden                                                                                               ', 41, 1, 0, CAST(N'2016-12-23T06:57:20.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (955, N'TKTRKWK             ', N'Kaisa                                                                                               ', N'Twinkleberry                                                                                        ', 4, 4, 0, CAST(N'2016-12-23T06:57:20.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (956, N'KHUXGSJ             ', N'Hawking                                                                                             ', N'Kerr                                                                                                ', 19, 2, 0, CAST(N'2016-12-23T06:57:20.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (957, N'PRONDTW             ', N'Ruairi                                                                                              ', N'Pounce                                                                                              ', 36, 8, 0, CAST(N'2016-12-23T06:57:20.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (958, N'FPGSOGV             ', N'Prowl                                                                                               ', N'Fluttersheen                                                                                        ', 13, 5, 0, CAST(N'2016-12-23T06:57:21.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (959, N'RNKXGUI             ', N'Naira                                                                                               ', N'Rollo                                                                                               ', 42, 5, 0, CAST(N'2016-12-23T06:57:21.310' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (960, N'VGSWEKV             ', N'Graves                                                                                              ', N'Viktoria                                                                                            ', 5, 8, 0, CAST(N'2016-12-23T06:57:21.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (961, N'SNRYTNG             ', N'Nevin                                                                                               ', N'Sweetwing                                                                                           ', 39, 7, 0, CAST(N'2016-12-23T06:57:21.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (962, N'HAONCQH             ', N'Albert                                                                                              ', N'Haidee                                                                                              ', 33, 3, 0, CAST(N'2016-12-23T06:57:21.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (963, N'TPMTFPA             ', N'Philomel                                                                                            ', N'Terje                                                                                               ', 16, 1, 0, CAST(N'2016-12-23T06:57:22.220' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (964, N'PGDUWPX             ', N'Glitterfluff                                                                                        ', N'Pipaluk                                                                                             ', 2, 2, 0, CAST(N'2016-12-23T06:57:22.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (965, N'AHDVQKS             ', N'Hofmann                                                                                             ', N'Ailpein                                                                                             ', 71, 7, 0, CAST(N'2016-12-23T06:57:22.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (966, N'RSCCOVC             ', N'Sludge                                                                                              ', N'Rein                                                                                                ', 17, 8, 0, CAST(N'2016-12-23T06:57:22.883' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (967, N'JSVBXSU             ', N'Siiri                                                                                               ', N'Johanna                                                                                             ', 40, 3, 0, CAST(N'2016-12-23T06:57:23.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (968, N'DSCYPVD             ', N'Sugarfeather                                                                                        ', N'Dolly-Sue                                                                                           ', 11, 5, 0, CAST(N'2016-12-23T06:57:23.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (969, N'BSTBAJC             ', N'Spacespirit                                                                                         ', N'Bertram                                                                                             ', 20, 7, 0, CAST(N'2016-12-23T06:57:23.547' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (970, N'FKDHRXC             ', N'Kristiina                                                                                           ', N'Fluttersheen                                                                                        ', 28, 1, 0, CAST(N'2016-12-23T06:57:23.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (971, N'JSCJBHI             ', N'Starbeam                                                                                            ', N'Jellygleam                                                                                          ', 14, 7, 0, CAST(N'2016-12-23T06:57:23.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (972, N'PJSGXBO             ', N'Jakeman                                                                                             ', N'Pounce                                                                                              ', 8, 8, 0, CAST(N'2016-12-23T06:57:24.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (973, N'CJJDWQW             ', N'Jeffers                                                                                             ', N'Chickenchaser                                                                                       ', 29, 8, 0, CAST(N'2016-12-23T06:57:30.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (974, N'SSHWGBD             ', N'Sureshot                                                                                            ', N'Sean                                                                                                ', 9, 5, 0, CAST(N'2016-12-23T06:57:31.380' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (975, N'AOEYMIS             ', N'Optimus                                                                                             ', N'Applebreeze                                                                                         ', 15, 5, 0, CAST(N'2016-12-23T06:57:31.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (976, N'KMRYFEA             ', N'McNaughton                                                                                          ', N'Katariina                                                                                           ', 3, 8, 0, CAST(N'2016-12-23T06:57:32.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (977, N'SAWDKCY             ', N'Andersen                                                                                            ', N'Silvernose                                                                                          ', 52, 1, 0, CAST(N'2016-12-23T06:57:32.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (978, N'PAGDHNV             ', N'Age                                                                                                 ', N'Pipaluk                                                                                             ', 12, 5, 0, CAST(N'2016-12-23T06:57:32.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (979, N'PERBJIH             ', N'Error                                                                                               ', N'Perceptor                                                                                           ', 35, 1, 0, CAST(N'2016-12-23T06:57:32.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (980, N'MCFCWJN             ', N'Clarkson                                                                                            ', N'Morgen                                                                                              ', 6, 5, 0, CAST(N'2016-12-23T06:57:32.877' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (981, N'JBYBALK             ', N'Blake                                                                                               ', N'Jochim                                                                                              ', 21, 7, 0, CAST(N'2016-12-23T06:57:33.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (982, N'ASAECRM             ', N'Sugarfeather                                                                                        ', N'Arlen                                                                                               ', 58, 6, 0, CAST(N'2016-12-23T06:57:33.317' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (983, N'RMSOVIK             ', N'MacClelland                                                                                         ', N'Riina                                                                                               ', 64, 4, 0, CAST(N'2016-12-23T06:57:33.527' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (984, N'GVYVPTD             ', N'Viktoria                                                                                            ', N'Goldshy                                                                                             ', 38, 6, 0, CAST(N'2016-12-23T06:57:33.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (985, N'SBHGQNR             ', N'Badcock                                                                                             ', N'Shaw                                                                                                ', 7, 2, 0, CAST(N'2016-12-23T06:57:33.967' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (986, N'SGCMPFU             ', N'Gears                                                                                               ', N'Snowdance                                                                                           ', 70, 6, 0, CAST(N'2016-12-23T06:57:34.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (987, N'GQRPPMO             ', N'Quickleaf                                                                                           ', N'Gentlegleam                                                                                         ', 18, 6, 0, CAST(N'2016-12-23T06:57:34.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (988, N'JTBFBKT             ', N'Tyrrell                                                                                             ', N'Jellygleam                                                                                          ', 30, 7, 0, CAST(N'2016-12-23T06:57:34.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (989, N'EJWEWQX             ', N'Jacobson                                                                                            ', N'Elsdon                                                                                              ', 10, 6, 0, CAST(N'2016-12-23T06:57:34.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (990, N'DJESBWV             ', N'Jeffers                                                                                             ', N'David                                                                                               ', 41, 4, 0, CAST(N'2016-12-23T06:57:35.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (991, N'AAQUQXN             ', N'Amsel                                                                                               ', N'Alasdair                                                                                            ', 4, 1, 0, CAST(N'2016-12-23T06:57:35.247' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (992, N'GTGQRVW             ', N'T hirih                                                                                             ', N'Grapple                                                                                             ', 19, 5, 0, CAST(N'2016-12-23T06:57:35.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (993, N'HTSBRWI             ', N'T hirih                                                                                             ', N'Herbie                                                                                              ', 36, 7, 0, CAST(N'2016-12-23T06:57:35.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (994, N'JNEDJOK             ', N'Nita                                                                                                ', N'Johanna                                                                                             ', 13, 5, 0, CAST(N'2016-12-23T06:57:35.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (995, N'SFVYQWR             ', N'Fantine                                                                                             ', N'Sweetstar                                                                                           ', 42, 5, 0, CAST(N'2016-12-23T06:57:36.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (996, N'ZNMHVMS             ', N'Nevin                                                                                               ', N'Zyanya                                                                                              ', 5, 7, 0, CAST(N'2016-12-23T06:57:36.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (997, N'EDJTLUL             ', N'Donohoe                                                                                             ', N'Elsdon                                                                                              ', 39, 6, 0, CAST(N'2016-12-23T06:57:36.567' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (998, N'MKBRGDE             ', N'Koenig                                                                                              ', N'Marika                                                                                              ', 33, 2, 0, CAST(N'2016-12-23T06:57:36.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (999, N'DHTVJDO             ', N'Hofmann                                                                                             ', N'Dirtgreaser                                                                                         ', 16, 4, 0, CAST(N'2016-12-23T06:57:37.007' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1000, N'CRBQJNN             ', N'Rock                                                                                                ', N'Crippler                                                                                            ', 2, 2, 0, CAST(N'2016-12-23T06:57:37.393' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1001, N'GNYBMAT             ', N'Nita                                                                                                ', N'Gumphauler                                                                                          ', 71, 8, 0, CAST(N'2016-12-23T06:57:37.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1002, N'JAUIDQJ             ', N'Alberts                                                                                             ', N'Jochim                                                                                              ', 17, 4, 0, CAST(N'2016-12-23T06:57:38.257' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1003, N'JSTGEAB             ', N'Scavenger                                                                                           ', N'Jemmy                                                                                               ', 40, 4, 0, CAST(N'2016-12-23T06:57:38.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1004, N'RAUNECT             ', N'Allsopp                                                                                             ', N'Rollo                                                                                               ', 11, 8, 0, CAST(N'2016-12-23T06:57:38.727' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1005, N'ASNTBLS             ', N'Studwick                                                                                            ', N'Arden                                                                                               ', 20, 4, 0, CAST(N'2016-12-23T06:57:39.003' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1006, N'PMKJHWT             ', N'Moongaze                                                                                            ', N'Peggy-Rae                                                                                           ', 28, 3, 0, CAST(N'2016-12-23T06:57:39.227' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1007, N'ASSYYAW             ', N'Sherman                                                                                             ', N'Atomic                                                                                              ', 14, 7, 0, CAST(N'2016-12-23T06:57:39.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1008, N'UGASOFK             ', N'Glittercloud                                                                                        ', N'Ultra                                                                                               ', 8, 2, 0, CAST(N'2016-12-23T06:57:39.667' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1009, N'LGTIFVY             ', N'Glitterfluff                                                                                        ', N'Lalla                                                                                               ', 29, 3, 0, CAST(N'2016-12-23T06:57:57.633' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1010, N'ZAAEQXU             ', N'Anthonyson                                                                                          ', N'Zyanya                                                                                              ', 9, 3, 0, CAST(N'2016-12-23T06:57:57.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1011, N'GMAYSDU             ', N'Marika                                                                                              ', N'Goldstar                                                                                            ', 15, 8, 0, CAST(N'2016-12-23T06:57:58.053' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1012, N'ACWRTAV             ', N'Clarkson                                                                                            ', N'Arden                                                                                               ', 3, 2, 0, CAST(N'2016-12-23T06:57:58.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1013, N'PHHEYTM             ', N'Hawking                                                                                             ', N'Pollyanna                                                                                           ', 52, 1, 0, CAST(N'2016-12-23T06:57:58.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1014, N'DBQCOTO             ', N'Breakdown                                                                                           ', N'Defensor                                                                                            ', 12, 2, 0, CAST(N'2016-12-23T06:57:58.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1015, N'MJXPMIV             ', N'Julitta                                                                                             ', N'Mari                                                                                                ', 35, 7, 0, CAST(N'2016-12-23T06:57:58.893' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1016, N'GKGYHLB             ', N'Koenig                                                                                              ', N'Goldshy                                                                                             ', 6, 3, 0, CAST(N'2016-12-23T06:57:59.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1017, N'AJUFLSH             ', N'Julitta                                                                                             ', N'Aloysius                                                                                            ', 21, 4, 0, CAST(N'2016-12-23T06:57:59.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1018, N'AAPCCOP             ', N'Albert                                                                                              ', N'Arcana                                                                                              ', 58, 1, 0, CAST(N'2016-12-23T06:57:59.547' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1019, N'SMPYHDS             ', N'Mirjam                                                                                              ', N'Sacnite                                                                                             ', 64, 7, 0, CAST(N'2016-12-23T06:57:59.763' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1020, N'RVCEBGO             ', N'Vorath                                                                                              ', N'Rhino                                                                                               ', 38, 4, 0, CAST(N'2016-12-23T06:57:59.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1021, N'DMAFIAV             ', N'Moongaze                                                                                            ', N'Dazzledust                                                                                          ', 7, 5, 0, CAST(N'2016-12-23T06:58:00.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1022, N'OSCQJHS             ', N'Sparklemoon                                                                                         ', N'Octane                                                                                              ', 70, 2, 0, CAST(N'2016-12-23T06:58:00.397' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1023, N'ASFRMRX             ', N'Schuler                                                                                             ', N'Atomic                                                                                              ', 18, 6, 0, CAST(N'2016-12-23T06:58:00.613' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1024, N'PMXINQW             ', N'Meissner                                                                                            ', N'Perceptor                                                                                           ', 30, 1, 0, CAST(N'2016-12-23T06:58:00.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1025, N'FGNPDSI             ', N'Glittercloud                                                                                        ', N'Flitterstar                                                                                         ', 10, 3, 0, CAST(N'2016-12-23T06:58:01.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1026, N'GNYTKXV             ', N'Naira                                                                                               ', N'Goldshy                                                                                             ', 41, 8, 0, CAST(N'2016-12-23T06:58:01.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1027, N'TNDIHOV             ', N'Nita                                                                                                ', N'Titania                                                                                             ', 4, 4, 0, CAST(N'2016-12-23T06:58:01.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1028, N'KSBKTJX             ', N'Simpkin                                                                                             ', N'Kadri                                                                                               ', 19, 1, 0, CAST(N'2016-12-23T06:58:01.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1029, N'TKAMJEM             ', N'Klowee                                                                                              ', N'Terje                                                                                               ', 36, 2, 0, CAST(N'2016-12-23T06:58:01.927' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1030, N'DMRAMNJ             ', N'MacClelland                                                                                         ', N'Dietfried                                                                                           ', 13, 4, 0, CAST(N'2016-12-23T06:58:02.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1031, N'JBKXSQH             ', N'Badcock                                                                                             ', N'Jemmy                                                                                               ', 42, 4, 0, CAST(N'2016-12-23T06:58:02.343' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1032, N'ALDPVIM             ', N'Leavitt                                                                                             ', N'Alfred                                                                                              ', 5, 8, 0, CAST(N'2016-12-23T06:58:02.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1033, N'OBNXVBS             ', N'Baphomet                                                                                            ', N'Oatchaser                                                                                           ', 39, 6, 0, CAST(N'2016-12-23T06:58:02.800' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1034, N'RKOMAIH             ', N'Kaja                                                                                                ', N'Ross                                                                                                ', 33, 6, 0, CAST(N'2016-12-23T06:58:03.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1035, N'VNGJEWY             ', N'Nita                                                                                                ', N'Victor                                                                                              ', 16, 3, 0, CAST(N'2016-12-23T06:58:03.237' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1036, N'MJRJMMN             ', N'Jacobson                                                                                            ', N'Mooncheeks                                                                                          ', 2, 2, 0, CAST(N'2016-12-23T06:58:03.463' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1037, N'CGKIFAS             ', N'Griffin                                                                                             ', N'Crazy                                                                                               ', 71, 5, 0, CAST(N'2016-12-23T06:58:03.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1038, N'SGFUIFN             ', N'Glittersheen                                                                                        ', N'Silvernose                                                                                          ', 17, 4, 0, CAST(N'2016-12-23T06:58:03.873' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1039, N'CIUQYMD             ', N'Itzel                                                                                               ', N'Carbry                                                                                              ', 40, 1, 0, CAST(N'2016-12-23T06:58:04.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1040, N'AVJBYWW             ', N'Vorath                                                                                              ', N'Alasdair                                                                                            ', 11, 7, 0, CAST(N'2016-12-23T06:58:04.317' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1041, N'PGRFPOH             ', N'Glittercloud                                                                                        ', N'Perceptor                                                                                           ', 20, 3, 0, CAST(N'2016-12-23T06:58:04.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1042, N'SSFMUAL             ', N'Siiri                                                                                               ', N'Sweetstar                                                                                           ', 28, 7, 0, CAST(N'2016-12-23T06:58:04.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1043, N'TAIXEDV             ', N'Age                                                                                                 ', N'Twinkleberry                                                                                        ', 14, 5, 0, CAST(N'2016-12-23T06:58:04.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1044, N'JBPIXOU             ', N'Blake                                                                                               ', N'Joyce                                                                                               ', 8, 2, 0, CAST(N'2016-12-23T06:58:05.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1045, N'PNNEJJL             ', N'Nita                                                                                                ', N'Punch                                                                                               ', 29, 1, 0, CAST(N'2016-12-23T06:58:19.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1046, N'LINMIHP             ', N'Ibbott                                                                                              ', N'Lightspeed                                                                                          ', 9, 2, 0, CAST(N'2016-12-23T06:58:20.033' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1047, N'AJQCTMX             ', N'Jazz                                                                                                ', N'Atomic                                                                                              ', 15, 3, 0, CAST(N'2016-12-23T06:58:20.237' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1048, N'AAULVSQ             ', N'Animal                                                                                              ', N'Arden                                                                                               ', 3, 2, 0, CAST(N'2016-12-23T06:58:20.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1049, N'AJIMCUA             ', N'Jazz                                                                                                ', N'Aloysius                                                                                            ', 52, 3, 0, CAST(N'2016-12-23T06:58:20.943' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1050, N'SZHMFEU             ', N'Zuleika                                                                                             ', N'Sofia                                                                                               ', 12, 5, 0, CAST(N'2016-12-23T06:58:21.177' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1051, N'CSDBFCY             ', N'Studwick                                                                                            ', N'Chickenchaser                                                                                       ', 35, 3, 0, CAST(N'2016-12-23T06:58:21.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1052, N'SNDTUDS             ', N'Nita                                                                                                ', N'Scotty                                                                                              ', 6, 4, 0, CAST(N'2016-12-23T06:58:21.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1053, N'PAGVBNU             ', N'Amsel                                                                                               ', N'Pigplanter                                                                                          ', 21, 1, 0, CAST(N'2016-12-23T06:58:22.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1054, N'ASJPPGG             ', N'Snowfeather                                                                                         ', N'Arlen                                                                                               ', 58, 4, 0, CAST(N'2016-12-23T06:58:22.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1055, N'HNDGNUK             ', N'Nye                                                                                                 ', N'Highbrow                                                                                            ', 64, 7, 0, CAST(N'2016-12-23T06:58:22.610' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1056, N'DARDSSK             ', N'Anthonyson                                                                                          ', N'Double                                                                                              ', 38, 5, 0, CAST(N'2016-12-23T06:58:22.853' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1057, N'JTEPFDI             ', N'T hirih                                                                                             ', N'Jochim                                                                                              ', 7, 7, 0, CAST(N'2016-12-23T06:58:23.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1058, N'MBGWNKE             ', N'Blake                                                                                               ', N'Maitland                                                                                            ', 70, 3, 0, CAST(N'2016-12-23T06:58:23.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1059, N'SANLLGE             ', N'Anthonyson                                                                                          ', N'Sweetwing                                                                                           ', 18, 3, 0, CAST(N'2016-12-23T06:58:23.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1060, N'CDWPFCR             ', N'Da''ronda                                                                                            ', N'Ceallagh                                                                                            ', 30, 1, 0, CAST(N'2016-12-23T06:58:23.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1061, N'TMVAWQD             ', N'Marika                                                                                              ', N'Tasgall                                                                                             ', 10, 3, 0, CAST(N'2016-12-23T06:58:23.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1062, N'TQMGYKJ             ', N'Quickmoon                                                                                           ', N'Tasgall                                                                                             ', 41, 7, 0, CAST(N'2016-12-23T06:58:24.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1063, N'QKAXKYB             ', N'Keith                                                                                               ', N'Quickdance                                                                                          ', 4, 2, 0, CAST(N'2016-12-23T06:58:24.417' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1064, N'KSIEEMM             ', N'Sureshot                                                                                            ', N'Kerr                                                                                                ', 19, 4, 0, CAST(N'2016-12-23T06:58:24.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1065, N'HGDWHCY             ', N'Golddust                                                                                            ', N'Haidee                                                                                              ', 36, 1, 0, CAST(N'2016-12-23T06:58:24.847' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1066, N'DKYLFKP             ', N'Kaisa                                                                                               ', N'Double                                                                                              ', 13, 6, 0, CAST(N'2016-12-23T06:58:25.057' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1067, N'SSKWXQS             ', N'Sigrid                                                                                              ', N'Sacnite                                                                                             ', 42, 3, 0, CAST(N'2016-12-23T06:58:25.283' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1068, N'MAMASNW             ', N'Age                                                                                                 ', N'Methoataske                                                                                         ', 5, 8, 0, CAST(N'2016-12-23T06:58:25.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1069, N'RHLWXHJ             ', N'Hanley                                                                                              ', N'Runabout                                                                                            ', 39, 5, 0, CAST(N'2016-12-23T06:58:25.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1070, N'HEEXOLF             ', N'Error                                                                                               ', N'Harmony                                                                                             ', 33, 5, 0, CAST(N'2016-12-23T06:58:25.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1071, N'ARQLDXD             ', N'Rock                                                                                                ', N'Arlen                                                                                               ', 16, 1, 0, CAST(N'2016-12-23T06:58:26.153' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1072, N'AJBKNHF             ', N'Julitta                                                                                             ', N'Aurel                                                                                               ', 2, 2, 0, CAST(N'2016-12-23T06:58:26.367' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1073, N'LWWCMKG             ', N'Warrick                                                                                             ', N'Loviise                                                                                             ', 71, 7, 0, CAST(N'2016-12-23T06:58:26.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1074, N'DUHBUEY             ', N'Ulalume                                                                                             ', N'Douglas                                                                                             ', 17, 7, 0, CAST(N'2016-12-23T06:58:26.800' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1075, N'CAYMSUB             ', N'Aylen                                                                                               ', N'Crazy                                                                                               ', 40, 3, 0, CAST(N'2016-12-23T06:58:27.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1076, N'GKTVSIU             ', N'Kreka                                                                                               ', N'Grapple                                                                                             ', 11, 4, 0, CAST(N'2016-12-23T06:58:27.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1077, N'FBBFFIW             ', N'Baphomet                                                                                            ', N'Flitterstar                                                                                         ', 20, 4, 0, CAST(N'2016-12-23T06:58:27.463' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1078, N'HWRWKSY             ', N'Woods                                                                                               ', N'Harmony                                                                                             ', 28, 6, 0, CAST(N'2016-12-23T06:58:27.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1079, N'TEGCBGK             ', N'Error                                                                                               ', N'Twinkleleaf                                                                                         ', 14, 8, 0, CAST(N'2016-12-23T06:58:27.897' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1080, N'PSFYFKO             ', N'Siiri                                                                                               ', N'Potatosower                                                                                         ', 8, 3, 0, CAST(N'2016-12-23T06:58:28.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1081, N'TARXJYC             ', N'Albert                                                                                              ', N'Twinkleleaf                                                                                         ', 29, 1, 0, CAST(N'2016-12-23T06:58:32.103' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1082, N'SOYEYBI             ', N'Ogden                                                                                               ', N'Scotty                                                                                              ', 9, 3, 0, CAST(N'2016-12-23T06:58:32.327' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1083, N'MPLIPXT             ', N'Pocahontas                                                                                          ', N'Methoataske                                                                                         ', 15, 7, 0, CAST(N'2016-12-23T06:58:32.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1084, N'ASDYCDQ             ', N'Sherman                                                                                             ', N'Arcana                                                                                              ', 3, 3, 0, CAST(N'2016-12-23T06:58:32.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1085, N'WBEXSRW             ', N'Blitzwing                                                                                           ', N'Wingspan                                                                                            ', 52, 7, 0, CAST(N'2016-12-23T06:58:32.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1086, N'SCYTXAI             ', N'Carbrey                                                                                             ', N'Sleek                                                                                               ', 12, 1, 0, CAST(N'2016-12-23T06:58:33.203' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1087, N'PEKSDPU             ', N'Error                                                                                               ', N'Pipaluk                                                                                             ', 35, 7, 0, CAST(N'2016-12-23T06:58:33.420' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1088, N'CKEVMQX             ', N'Koenig                                                                                              ', N'Chickenfarmer                                                                                       ', 6, 8, 0, CAST(N'2016-12-23T06:58:33.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1089, N'FPRSLTO             ', N'Potatochaser                                                                                        ', N'Fluttersheen                                                                                        ', 21, 2, 0, CAST(N'2016-12-23T06:58:33.853' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1090, N'AJCDQAU             ', N'Jacobson                                                                                            ', N'Aleksander                                                                                          ', 58, 6, 0, CAST(N'2016-12-23T06:58:34.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1091, N'SDGNDYQ             ', N'Dazzlegaze                                                                                          ', N'Sweetstar                                                                                           ', 64, 6, 0, CAST(N'2016-12-23T06:58:34.300' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1092, N'CIFIUYD             ', N'Iomhar                                                                                              ', N'C emgein                                                                                            ', 38, 6, 0, CAST(N'2016-12-23T06:58:34.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1093, N'FSVQEYP             ', N'Schuler                                                                                             ', N'Fluttersheen                                                                                        ', 7, 6, 0, CAST(N'2016-12-23T06:58:34.727' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1094, N'DHNDBTQ             ', N'Hawking                                                                                             ', N'Dolly-Sue                                                                                           ', 70, 3, 0, CAST(N'2016-12-23T06:58:34.937' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1095, N'SNUSCUD             ', N'Nevin                                                                                               ', N'Silvernose                                                                                          ', 18, 4, 0, CAST(N'2016-12-23T06:58:35.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1096, N'KMSCYXX             ', N'Mirjam                                                                                              ', N'Kerr                                                                                                ', 30, 2, 0, CAST(N'2016-12-23T06:58:35.377' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1097, N'AALGWKS             ', N'Anthonyson                                                                                          ', N'Aleksander                                                                                          ', 10, 6, 0, CAST(N'2016-12-23T06:58:35.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1098, N'TAQLQOQ             ', N'Anthonyson                                                                                          ', N'Tasgall                                                                                             ', 41, 5, 0, CAST(N'2016-12-23T06:58:35.813' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1099, N'PKBAMTM             ', N'Kaisa                                                                                               ', N'Pigplanter                                                                                          ', 4, 7, 0, CAST(N'2016-12-23T06:58:36.023' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1100, N'LKEPFUE             ', N'Kaja                                                                                                ', N'Lalla                                                                                               ', 19, 5, 0, CAST(N'2016-12-23T06:58:36.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1101, N'MJDJAKI             ', N'Jazz                                                                                                ', N'Methoataske                                                                                         ', 36, 1, 0, CAST(N'2016-12-23T06:58:36.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1102, N'KGDELLG             ', N'Gears                                                                                               ', N'Kerr                                                                                                ', 13, 6, 0, CAST(N'2016-12-23T06:58:36.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1103, N'DPNQTBM             ', N'Payton                                                                                              ', N'Double                                                                                              ', 42, 3, 0, CAST(N'2016-12-23T06:58:36.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1104, N'CPVVGDI             ', N'Philomel                                                                                            ', N'Corona                                                                                              ', 5, 6, 0, CAST(N'2016-12-23T06:58:37.143' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1105, N'PIUQRKK             ', N'Itzel                                                                                               ', N'Pollyanna                                                                                           ', 39, 6, 0, CAST(N'2016-12-23T06:58:37.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1106, N'TGJRINL             ', N'Griffin                                                                                             ', N'Tasgall                                                                                             ', 33, 6, 0, CAST(N'2016-12-23T06:58:37.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1107, N'GJOCVRN             ', N'Jeffers                                                                                             ', N'Goldstar                                                                                            ', 16, 1, 0, CAST(N'2016-12-23T06:58:37.793' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1108, N'PPBYUSH             ', N'Peacespirit                                                                                         ', N'Pollyanna                                                                                           ', 2, 7, 0, CAST(N'2016-12-23T06:58:38.007' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1109, N'DAKDGBN             ', N'Aylen                                                                                               ', N'Double                                                                                              ', 71, 6, 0, CAST(N'2016-12-23T06:58:38.210' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1110, N'GDDHJQR             ', N'Dazzlegaze                                                                                          ', N'Gobnata                                                                                             ', 17, 6, 0, CAST(N'2016-12-23T06:58:38.433' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1111, N'CBACCQT             ', N'Breakdown                                                                                           ', N'Crush                                                                                               ', 40, 8, 0, CAST(N'2016-12-23T06:58:38.647' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1112, N'GLMQKNU             ', N'Leelo                                                                                               ', N'Gobnata                                                                                             ', 11, 8, 0, CAST(N'2016-12-23T06:58:38.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1113, N'VJYNNDS             ', N'Julitta                                                                                             ', N'Victor                                                                                              ', 20, 1, 0, CAST(N'2016-12-23T06:58:39.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1114, N'PJNKHDE             ', N'Jeffers                                                                                             ', N'Pollyanna                                                                                           ', 28, 6, 0, CAST(N'2016-12-23T06:58:39.300' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1115, N'DBUSJIG             ', N'Breakdown                                                                                           ', N'David                                                                                               ', 14, 1, 0, CAST(N'2016-12-23T06:58:39.517' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1116, N'MMFOMLW             ', N'Mirjam                                                                                              ', N'Morgen                                                                                              ', 8, 6, 0, CAST(N'2016-12-23T06:58:39.730' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1117, N'SKOMGCR             ', N'Kaisa                                                                                               ', N'Scourge                                                                                             ', 29, 4, 0, CAST(N'2016-12-23T06:58:49.497' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1118, N'RMROIGF             ', N'Marcas                                                                                              ', N'Ross                                                                                                ', 9, 6, 0, CAST(N'2016-12-23T06:58:49.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1119, N'DTBHAUQ             ', N'Tyrrell                                                                                             ', N'Devastator                                                                                          ', 15, 8, 0, CAST(N'2016-12-23T06:58:49.937' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1120, N'BKPVLFD             ', N'Klowee                                                                                              ', N'Blair                                                                                               ', 3, 5, 0, CAST(N'2016-12-23T06:58:50.157' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1121, N'GJFSLXK             ', N'Junge                                                                                               ', N'Gobnata                                                                                             ', 52, 2, 0, CAST(N'2016-12-23T06:58:50.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1122, N'KJXNMGR             ', N'Junge                                                                                               ', N'Knut                                                                                                ', 12, 4, 0, CAST(N'2016-12-23T06:58:50.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1123, N'CNUTUJT             ', N'Nye                                                                                                 ', N'C emgein                                                                                            ', 35, 6, 0, CAST(N'2016-12-23T06:58:50.800' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1124, N'SSHMLSC             ', N'Siiri                                                                                               ', N'Sweetstar                                                                                           ', 6, 7, 0, CAST(N'2016-12-23T06:58:51.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1125, N'GGSDWTI             ', N'Golddust                                                                                            ', N'Gilchrist                                                                                           ', 21, 4, 0, CAST(N'2016-12-23T06:58:51.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1126, N'SDLIDBT             ', N'Dulcinea                                                                                            ', N'Scourge                                                                                             ', 58, 8, 0, CAST(N'2016-12-23T06:58:51.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1127, N'PTKVXUM             ', N'Twinkleeyes                                                                                         ', N'Punch                                                                                               ', 64, 6, 0, CAST(N'2016-12-23T06:58:51.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1128, N'AGUELSU             ', N'Glittercloud                                                                                        ', N'Aloysius                                                                                            ', 38, 5, 0, CAST(N'2016-12-23T06:58:51.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1129, N'JHFAKJT             ', N'Hofmann                                                                                             ', N'Jellygleam                                                                                          ', 7, 4, 0, CAST(N'2016-12-23T06:58:52.083' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1130, N'BVRGSMF             ', N'Vorath                                                                                              ', N'Beeatriks                                                                                           ', 70, 6, 0, CAST(N'2016-12-23T06:58:52.300' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1131, N'WRQWPEL             ', N'Rippersnapper                                                                                       ', N'Webster                                                                                             ', 18, 2, 0, CAST(N'2016-12-23T06:58:52.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1132, N'LCBRNPF             ', N'Clarkson                                                                                            ', N'Loviise                                                                                             ', 30, 1, 0, CAST(N'2016-12-23T06:58:52.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1133, N'CBGABOS             ', N'Badcock                                                                                             ', N'Chickenfarmer                                                                                       ', 10, 5, 0, CAST(N'2016-12-23T06:58:52.937' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1134, N'SMYHYRR             ', N'Mirjam                                                                                              ', N'Silvernose                                                                                          ', 41, 7, 0, CAST(N'2016-12-23T06:58:53.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1135, N'LRKBOFP             ', N'Ranald                                                                                              ', N'Loyd                                                                                                ', 4, 8, 0, CAST(N'2016-12-23T06:58:53.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1136, N'RSUCBPO             ', N'Stone                                                                                               ', N'Rollo                                                                                               ', 19, 8, 0, CAST(N'2016-12-23T06:58:53.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1137, N'LSGCECU             ', N'Spacespirit                                                                                         ', N'Loviise                                                                                             ', 36, 7, 0, CAST(N'2016-12-23T06:58:53.797' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1138, N'MJFJASK             ', N'Julitta                                                                                             ', N'Maimu                                                                                               ', 13, 1, 0, CAST(N'2016-12-23T06:58:54.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1139, N'LCRAKDJ             ', N'Clarkson                                                                                            ', N'Lalla                                                                                               ', 42, 6, 0, CAST(N'2016-12-23T06:58:54.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1140, N'KDUIRAG             ', N'Dulcinea                                                                                            ', N'Kateri                                                                                              ', 5, 7, 0, CAST(N'2016-12-23T06:58:54.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1141, N'AHOHGTW             ', N'Hofmann                                                                                             ', N'Ayelen                                                                                              ', 39, 7, 0, CAST(N'2016-12-23T06:58:54.660' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1142, N'CSFCRYG             ', N'Sugarfeather                                                                                        ', N'Clearkiss                                                                                           ', 33, 1, 0, CAST(N'2016-12-23T06:58:54.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1143, N'DMODRMV             ', N'Marcas                                                                                              ', N'Douglas                                                                                             ', 16, 3, 0, CAST(N'2016-12-23T06:58:55.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1144, N'PFTFCEX             ', N'Fantine                                                                                             ', N'Pollyanna                                                                                           ', 2, 4, 0, CAST(N'2016-12-23T06:58:55.303' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1145, N'TOXXDOR             ', N'Ogden                                                                                               ', N'Tasgall                                                                                             ', 71, 4, 0, CAST(N'2016-12-23T06:58:55.523' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1146, N'HSUVBOG             ', N'Sureshot                                                                                            ', N'Herbie                                                                                              ', 17, 5, 0, CAST(N'2016-12-23T06:58:55.737' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1147, N'SMIBKYL             ', N'Mirjam                                                                                              ', N'Scotty                                                                                              ', 40, 4, 0, CAST(N'2016-12-23T06:58:55.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1148, N'GCOBDEX             ', N'Carbrey                                                                                             ', N'Gentlegleam                                                                                         ', 11, 5, 0, CAST(N'2016-12-23T06:58:56.190' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1149, N'MVPAKGM             ', N'Viktoria                                                                                            ', N'Marika                                                                                              ', 20, 7, 0, CAST(N'2016-12-23T06:58:56.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1150, N'GSJEXOB             ', N'Snowfeather                                                                                         ', N'Gobnata                                                                                             ', 28, 6, 0, CAST(N'2016-12-23T06:58:56.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1151, N'TGSYLSE             ', N'Glitterfluff                                                                                        ', N'Twinkleleaf                                                                                         ', 14, 1, 0, CAST(N'2016-12-23T06:58:56.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1152, N'NPGQWNQ             ', N'Potatochaser                                                                                        ', N'Nydia                                                                                               ', 8, 4, 0, CAST(N'2016-12-23T06:58:57.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1153, N'GBMVGMN             ', N'Baphomet                                                                                            ', N'Gobnata                                                                                             ', 29, 7, 0, CAST(N'2016-12-23T06:59:13.247' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1154, N'RKYPGGS             ', N'Kaja                                                                                                ', N'Ross                                                                                                ', 9, 3, 0, CAST(N'2016-12-23T06:59:13.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1155, N'JHXVNCU             ', N'Hawking                                                                                             ', N'Jeremiah                                                                                            ', 15, 3, 0, CAST(N'2016-12-23T06:59:13.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1156, N'KOIBEBV             ', N'Ogden                                                                                               ', N'Katariina                                                                                           ', 3, 3, 0, CAST(N'2016-12-23T06:59:13.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1157, N'KRUKTYK             ', N'Ruairi                                                                                              ', N'Kadri                                                                                               ', 52, 3, 0, CAST(N'2016-12-23T06:59:14.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1158, N'SAAAKVW             ', N'Amsel                                                                                               ', N'Sweetstar                                                                                           ', 12, 2, 0, CAST(N'2016-12-23T06:59:14.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1159, N'MFLKAXG             ', N'Flutternose                                                                                         ', N'Morgen                                                                                              ', 35, 6, 0, CAST(N'2016-12-23T06:59:14.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1160, N'SQQWTWT             ', N'Quickleaf                                                                                           ', N'Sleek                                                                                               ', 6, 8, 0, CAST(N'2016-12-23T06:59:14.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1161, N'TKIXKFF             ', N'Kaisa                                                                                               ', N'Twinkleberry                                                                                        ', 21, 2, 0, CAST(N'2016-12-23T06:59:14.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1162, N'AMSMDBX             ', N'Mirjam                                                                                              ', N'Alasdair                                                                                            ', 58, 3, 0, CAST(N'2016-12-23T06:59:15.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1163, N'VFSVECI             ', N'Fantine                                                                                             ', N'Victor                                                                                              ', 64, 7, 0, CAST(N'2016-12-23T06:59:15.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1164, N'ALHDFNF             ', N'Leelo                                                                                               ', N'Alasdair                                                                                            ', 38, 3, 0, CAST(N'2016-12-23T06:59:15.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1165, N'RBFFFVS             ', N'Blake                                                                                               ', N'Ruairidh                                                                                            ', 7, 1, 0, CAST(N'2016-12-23T06:59:15.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1166, N'PWMPXKD             ', N'Woods                                                                                               ', N'Pipaluk                                                                                             ', 70, 7, 0, CAST(N'2016-12-23T06:59:16.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1167, N'PCQGPON             ', N'Carbrey                                                                                             ', N'Piloqutinnguaq                                                                                      ', 18, 8, 0, CAST(N'2016-12-23T06:59:16.270' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1168, N'PSNEHVS             ', N'Simpkin                                                                                             ', N'Piloqutinnguaq                                                                                      ', 30, 2, 0, CAST(N'2016-12-23T06:59:16.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1169, N'CMFVDDE             ', N'Mirjam                                                                                              ', N'Crazy                                                                                               ', 10, 4, 0, CAST(N'2016-12-23T06:59:16.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1170, N'GFVWYLC             ', N'Flutternose                                                                                         ', N'Gilchrist                                                                                           ', 41, 3, 0, CAST(N'2016-12-23T06:59:16.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1171, N'FCXPQFN             ', N'Cyra                                                                                                ', N'Flitterstar                                                                                         ', 4, 7, 0, CAST(N'2016-12-23T06:59:17.147' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1172, N'DGTPVSP             ', N'Glitterfluff                                                                                        ', N'Defensor                                                                                            ', 19, 6, 0, CAST(N'2016-12-23T06:59:17.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1173, N'SAONBEU             ', N'Anthonyson                                                                                          ', N'Scotty                                                                                              ', 36, 4, 0, CAST(N'2016-12-23T06:59:17.823' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1174, N'PWCCCYH             ', N'Warrick                                                                                             ', N'Pollyanna                                                                                           ', 13, 1, 0, CAST(N'2016-12-23T06:59:18.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1175, N'SNDAIIF             ', N'Naira                                                                                               ', N'Sofia                                                                                               ', 42, 7, 0, CAST(N'2016-12-23T06:59:18.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1176, N'CRSCGIM             ', N'Rock                                                                                                ', N'Crippler                                                                                            ', 5, 8, 0, CAST(N'2016-12-23T06:59:18.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1177, N'CMKTUHV             ', N'Meissner                                                                                            ', N'Clearkiss                                                                                           ', 39, 1, 0, CAST(N'2016-12-23T06:59:18.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1178, N'SSPTITA             ', N'Studwick                                                                                            ', N'Sofia                                                                                               ', 33, 7, 0, CAST(N'2016-12-23T06:59:18.927' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1179, N'SCRGHFL             ', N'Clarkson                                                                                            ', N'Sofia                                                                                               ', 16, 7, 0, CAST(N'2016-12-23T06:59:19.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1180, N'DWSSOES             ', N'Wheeljack                                                                                           ', N'Dazzledust                                                                                          ', 2, 3, 0, CAST(N'2016-12-23T06:59:19.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1181, N'EMCUDHM             ', N'Miles                                                                                               ', N'Everild                                                                                             ', 71, 3, 0, CAST(N'2016-12-23T06:59:19.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1182, N'KGFYBMP             ', N'Graves                                                                                              ', N'Kermit                                                                                              ', 17, 6, 0, CAST(N'2016-12-23T06:59:19.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1183, N'DSUEHYL             ', N'Sugarfeather                                                                                        ', N'Double                                                                                              ', 40, 3, 0, CAST(N'2016-12-23T06:59:19.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1184, N'KHQKBYU             ', N'Hanley                                                                                              ', N'Kim                                                                                                 ', 11, 6, 0, CAST(N'2016-12-23T06:59:20.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1185, N'SMBKTXP             ', N'McRae                                                                                               ', N'Silvernose                                                                                          ', 20, 4, 0, CAST(N'2016-12-23T06:59:20.423' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1186, N'SMIGCXM             ', N'Moongaze                                                                                            ', N'Silverfrost                                                                                         ', 28, 2, 0, CAST(N'2016-12-23T06:59:20.657' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1187, N'AMSCJVR             ', N'Meissner                                                                                            ', N'Aleksander                                                                                          ', 14, 4, 0, CAST(N'2016-12-23T06:59:20.877' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1188, N'SSDFDJT             ', N'Sugarkiss                                                                                           ', N'Sally                                                                                               ', 8, 1, 0, CAST(N'2016-12-23T06:59:21.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1189, N'RSUCIVO             ', N'Sludge                                                                                              ', N'Rhino                                                                                               ', 29, 2, 0, CAST(N'2016-12-23T07:00:02.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1190, N'ARSLEVN             ', N'Ranald                                                                                              ', N'Alasdair                                                                                            ', 9, 7, 0, CAST(N'2016-12-23T07:00:02.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1191, N'HQCFDHU             ', N'Quickmoon                                                                                           ', N'Harmony                                                                                             ', 15, 1, 0, CAST(N'2016-12-23T07:00:02.553' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1192, N'KMSUMPC             ', N'McNaughton                                                                                          ', N'Katariina                                                                                           ', 3, 4, 0, CAST(N'2016-12-23T07:00:02.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1193, N'HPQJKJJ             ', N'Potatochaser                                                                                        ', N'Harmony                                                                                             ', 52, 3, 0, CAST(N'2016-12-23T07:00:02.973' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1194, N'PSQFEQQ             ', N'Siiri                                                                                               ', N'Piloqutinnguaq                                                                                      ', 12, 5, 0, CAST(N'2016-12-23T07:00:03.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1195, N'JSFNHIO             ', N'Sideswipe                                                                                           ', N'Jochim                                                                                              ', 35, 7, 0, CAST(N'2016-12-23T07:00:03.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1196, N'ABGDJRI             ', N'Blitzwing                                                                                           ', N'Applebreeze                                                                                         ', 6, 5, 0, CAST(N'2016-12-23T07:00:03.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1197, N'KSFSVUA             ', N'Sparklemoon                                                                                         ', N'Kadri                                                                                               ', 21, 8, 0, CAST(N'2016-12-23T07:00:03.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1198, N'SGCCEYN             ', N'Glittersheen                                                                                        ', N'Silverfrost                                                                                         ', 58, 7, 0, CAST(N'2016-12-23T07:00:04.077' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1199, N'CBPHUQM             ', N'Breakdown                                                                                           ', N'Corona                                                                                              ', 64, 6, 0, CAST(N'2016-12-23T07:00:04.283' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1200, N'RRLYWNS             ', N'Ranald                                                                                              ', N'Rollo                                                                                               ', 38, 7, 0, CAST(N'2016-12-23T07:00:04.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1201, N'MCNJNKF             ', N'Cyra                                                                                                ', N'Mari                                                                                                ', 7, 8, 0, CAST(N'2016-12-23T07:00:04.703' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1202, N'FDFHPMP             ', N'Dazzlegaze                                                                                          ', N'Fergus                                                                                              ', 70, 1, 0, CAST(N'2016-12-23T07:00:04.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1203, N'CRTOFEV             ', N'Rock                                                                                                ', N'Chickenfarmer                                                                                       ', 18, 8, 0, CAST(N'2016-12-23T07:00:05.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1204, N'TQROIKB             ', N'Quickleaf                                                                                           ', N'Twinkleleaf                                                                                         ', 30, 6, 0, CAST(N'2016-12-23T07:00:05.333' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1205, N'ANWFCVM             ', N'Nita                                                                                                ', N'Assassin                                                                                            ', 10, 7, 0, CAST(N'2016-12-23T07:00:05.557' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1206, N'FRDYIWJ             ', N'Ruairi                                                                                              ', N'Fergus                                                                                              ', 41, 4, 0, CAST(N'2016-12-23T07:00:05.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1207, N'AMGINNG             ', N'McNaughton                                                                                          ', N'Aloysius                                                                                            ', 4, 5, 0, CAST(N'2016-12-23T07:00:05.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1208, N'GDHUGXD             ', N'Donohoe                                                                                             ', N'Gobnata                                                                                             ', 19, 1, 0, CAST(N'2016-12-23T07:00:06.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1209, N'CAKWBKD             ', N'Anthonyson                                                                                          ', N'Chickenchaser                                                                                       ', 36, 2, 0, CAST(N'2016-12-23T07:00:06.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1210, N'CSHTFVE             ', N'Starbeam                                                                                            ', N'Crippler                                                                                            ', 13, 8, 0, CAST(N'2016-12-23T07:00:06.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1211, N'ASKIXON             ', N'Saunders                                                                                            ', N'Alfred                                                                                              ', 42, 1, 0, CAST(N'2016-12-23T07:00:06.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1212, N'ANMFVHU             ', N'Nita                                                                                                ', N'Ailpein                                                                                             ', 5, 1, 0, CAST(N'2016-12-23T07:00:07.047' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1213, N'MSFUEJI             ', N'School                                                                                              ', N'Marika                                                                                              ', 39, 3, 0, CAST(N'2016-12-23T07:00:07.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1214, N'SSYKPIN             ', N'Sugarkiss                                                                                           ', N'Sheard                                                                                              ', 33, 1, 0, CAST(N'2016-12-23T07:00:07.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1215, N'JSCVJAU             ', N'Seedfarmer                                                                                          ', N'Jellygleam                                                                                          ', 16, 4, 0, CAST(N'2016-12-23T07:00:07.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1216, N'DMVAYDJ             ', N'Maoilios                                                                                            ', N'Douglas                                                                                             ', 2, 4, 0, CAST(N'2016-12-23T07:00:07.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1217, N'DMAAAQS             ', N'McNaughton                                                                                          ', N'Dietfried                                                                                           ', 71, 5, 0, CAST(N'2016-12-23T07:00:08.133' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1218, N'GGHDRUL             ', N'Gears                                                                                               ', N'Gentlegleam                                                                                         ', 17, 2, 0, CAST(N'2016-12-23T07:00:08.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1219, N'DDVFAUE             ', N'Da''ronda                                                                                            ', N'Devastator                                                                                          ', 40, 5, 0, CAST(N'2016-12-23T07:00:08.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1220, N'DMRUBGQ             ', N'McRae                                                                                               ', N'Dolly-Sue                                                                                           ', 11, 3, 0, CAST(N'2016-12-23T07:00:08.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1221, N'KQYKCUQ             ', N'Quickleaf                                                                                           ', N'Kerr                                                                                                ', 20, 2, 0, CAST(N'2016-12-23T07:00:08.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1222, N'PGBANUB             ', N'Glittersheen                                                                                        ', N'Pipaluk                                                                                             ', 28, 1, 0, CAST(N'2016-12-23T07:00:09.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1223, N'MUHFVKD             ', N'Ulalume                                                                                             ', N'Marika                                                                                              ', 14, 7, 0, CAST(N'2016-12-23T07:00:09.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1224, N'MKHBLID             ', N'Kaisa                                                                                               ', N'Mooncheeks                                                                                          ', 8, 6, 0, CAST(N'2016-12-23T07:00:09.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1225, N'TCQELEE             ', N'Carbrey                                                                                             ', N'Titania                                                                                             ', 29, 2, 0, CAST(N'2016-12-23T07:00:18.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1226, N'CKNTHQV             ', N'Keith                                                                                               ', N'Chickenfarmer                                                                                       ', 9, 2, 0, CAST(N'2016-12-23T07:00:18.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1227, N'DJWQFIE             ', N'Jeffers                                                                                             ', N'Double                                                                                              ', 15, 8, 0, CAST(N'2016-12-23T07:00:19.147' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1228, N'ASSDNXI             ', N'Schuler                                                                                             ', N'Aleksandra                                                                                          ', 3, 4, 0, CAST(N'2016-12-23T07:00:19.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1229, N'TRNGDSO             ', N'Rock                                                                                                ', N'Twinkleleaf                                                                                         ', 52, 3, 0, CAST(N'2016-12-23T07:00:19.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1230, N'PGMQUMX             ', N'Griffin                                                                                             ', N'Pigplanter                                                                                          ', 12, 1, 0, CAST(N'2016-12-23T07:00:19.793' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1231, N'DKMIYMJ             ', N'Kaisa                                                                                               ', N'Dirtgreaser                                                                                         ', 35, 3, 0, CAST(N'2016-12-23T07:00:20.003' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1232, N'GAFOLVX             ', N'Allsopp                                                                                             ', N'Goldstar                                                                                            ', 6, 2, 0, CAST(N'2016-12-23T07:00:20.227' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1233, N'SMCEBYQ             ', N'McNaughton                                                                                          ', N'Sheard                                                                                              ', 21, 8, 0, CAST(N'2016-12-23T07:00:20.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1234, N'EDHFFMF             ', N'Donohoe                                                                                             ', N'Everild                                                                                             ', 58, 1, 0, CAST(N'2016-12-23T07:00:20.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1235, N'ASOBVTS             ', N'Sludge                                                                                              ', N'Alasdair                                                                                            ', 64, 8, 0, CAST(N'2016-12-23T07:00:20.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1236, N'ZGVQRPW             ', N'Glittercloud                                                                                        ', N'Za re                                                                                               ', 38, 8, 0, CAST(N'2016-12-23T07:00:21.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1237, N'FNSNQCV             ', N'Nye                                                                                                 ', N'Flitterstar                                                                                         ', 7, 1, 0, CAST(N'2016-12-23T07:00:21.283' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1238, N'GPWRJJF             ', N'Philomel                                                                                            ', N'Goldstar                                                                                            ', 70, 6, 0, CAST(N'2016-12-23T07:00:21.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1239, N'RUKHKDU             ', N'Ulalume                                                                                             ', N'Rollo                                                                                               ', 18, 2, 0, CAST(N'2016-12-23T07:00:21.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1240, N'MGLRHHT             ', N'Gentlemoon                                                                                          ', N'Marika                                                                                              ', 30, 5, 0, CAST(N'2016-12-23T07:00:21.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1241, N'PTRMFUO             ', N'Twinkleeyes                                                                                         ', N'Pipaluk                                                                                             ', 10, 1, 0, CAST(N'2016-12-23T07:00:22.127' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1242, N'OCHLKAT             ', N'Carbrey                                                                                             ', N'Oatchaser                                                                                           ', 41, 7, 0, CAST(N'2016-12-23T07:00:22.333' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1243, N'ESROSLW             ', N'Sludge                                                                                              ', N'Everild                                                                                             ', 4, 1, 0, CAST(N'2016-12-23T07:00:22.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1244, N'FKDOWUK             ', N'Klowee                                                                                              ', N'Fergus                                                                                              ', 19, 3, 0, CAST(N'2016-12-23T07:00:22.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1245, N'DFSPSIR             ', N'Force                                                                                               ', N'Dietfried                                                                                           ', 36, 5, 0, CAST(N'2016-12-23T07:00:22.983' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1246, N'MPFLWLI             ', N'Prowl                                                                                               ', N'Methoataske                                                                                         ', 13, 4, 0, CAST(N'2016-12-23T07:00:23.193' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1247, N'CPXGPDJ             ', N'Prowl                                                                                               ', N'Chickenfarmer                                                                                       ', 42, 7, 0, CAST(N'2016-12-23T07:00:23.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1248, N'ASULADY             ', N'Sugarfeather                                                                                        ', N'Arcana                                                                                              ', 5, 5, 0, CAST(N'2016-12-23T07:00:23.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1249, N'AGPIWEY             ', N'Glittercloud                                                                                        ', N'Alasdair                                                                                            ', 39, 8, 0, CAST(N'2016-12-23T07:00:23.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1250, N'GLBQGLP             ', N'Leavitt                                                                                             ', N'Gilchrist                                                                                           ', 33, 2, 0, CAST(N'2016-12-23T07:00:24.033' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1251, N'CCXOFVF             ', N'Calfuray                                                                                            ', N'Ceallagh                                                                                            ', 16, 3, 0, CAST(N'2016-12-23T07:00:24.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1252, N'SSHCLHD             ', N'Sureshot                                                                                            ', N'Silvernose                                                                                          ', 2, 1, 0, CAST(N'2016-12-23T07:00:24.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1253, N'ANKSGPK             ', N'Nita                                                                                                ', N'Atomic                                                                                              ', 71, 2, 0, CAST(N'2016-12-23T07:00:24.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1254, N'WQKJVVD             ', N'Quickleaf                                                                                           ', N'Webster                                                                                             ', 17, 8, 0, CAST(N'2016-12-23T07:00:24.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1255, N'PMLSDNI             ', N'Moongaze                                                                                            ', N'Pounce                                                                                              ', 40, 3, 0, CAST(N'2016-12-23T07:00:25.103' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1256, N'GAUTNDQ             ', N'Amsel                                                                                               ', N'Gears                                                                                               ', 11, 1, 0, CAST(N'2016-12-23T07:00:25.327' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1257, N'CRPHEAH             ', N'Rippersnapper                                                                                       ', N'Crazy                                                                                               ', 20, 2, 0, CAST(N'2016-12-23T07:00:25.547' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1258, N'OSOKXOO             ', N'Studwick                                                                                            ', N'Octane                                                                                              ', 28, 7, 0, CAST(N'2016-12-23T07:00:25.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1259, N'CSTWKWB             ', N'Sigrid                                                                                              ', N'Corona                                                                                              ', 14, 1, 0, CAST(N'2016-12-23T07:00:25.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1260, N'RSCHSUP             ', N'Studwick                                                                                            ', N'Ruairidh                                                                                            ', 8, 5, 0, CAST(N'2016-12-23T07:00:26.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1261, N'CFWYFTO             ', N'Force                                                                                               ', N'Corona                                                                                              ', 29, 2, 0, CAST(N'2016-12-23T07:00:33.450' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1262, N'SSSBPLT             ', N'School                                                                                              ', N'Sofia                                                                                               ', 9, 5, 0, CAST(N'2016-12-23T07:00:33.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1263, N'PNEDXBX             ', N'Naira                                                                                               ', N'Powerglide                                                                                          ', 15, 3, 0, CAST(N'2016-12-23T07:00:33.893' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1264, N'LOPIJDW             ', N'Ogden                                                                                               ', N'Loyd                                                                                                ', 3, 6, 0, CAST(N'2016-12-23T07:00:34.103' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1265, N'PMWSFVU             ', N'Mirjam                                                                                              ', N'Pollyanna                                                                                           ', 52, 2, 0, CAST(N'2016-12-23T07:00:34.337' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1266, N'PSAWUPL             ', N'Sempers                                                                                             ', N'Pigplanter                                                                                          ', 12, 2, 0, CAST(N'2016-12-23T07:00:34.567' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1267, N'SPHWOSA             ', N'Pocahontas                                                                                          ', N'Sleek                                                                                               ', 29, 8, 0, CAST(N'2016-12-23T07:36:33.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1268, N'RVWOSAW             ', N'Venom                                                                                               ', N'Ross                                                                                                ', 29, 8, 0, CAST(N'2016-12-23T09:13:00.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1269, N'DHLITDD             ', N'Hawking                                                                                             ', N'Dolly-Sue                                                                                           ', 9, 2, 0, CAST(N'2016-12-23T09:13:00.967' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1270, N'MTQRHNY             ', N'Topanga                                                                                             ', N'Mooncheeks                                                                                          ', 15, 6, 0, CAST(N'2016-12-23T09:13:01.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1271, N'TSFGAFO             ', N'Sherman                                                                                             ', N'Titania                                                                                             ', 3, 4, 0, CAST(N'2016-12-23T09:13:01.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1272, N'RAIISUA             ', N'Andersen                                                                                            ', N'Rowan                                                                                               ', 52, 1, 0, CAST(N'2016-12-23T09:13:01.613' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1273, N'RZVGNPP             ', N'Zaragamba                                                                                           ', N'Rowan                                                                                               ', 12, 2, 0, CAST(N'2016-12-23T09:13:01.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1274, N'JEXYTDW             ', N'Error                                                                                               ', N'Jemmy                                                                                               ', 35, 2, 0, CAST(N'2016-12-23T09:13:02.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1275, N'RCDOJWL             ', N'Cosmicmother                                                                                        ', N'Ruairidh                                                                                            ', 6, 3, 0, CAST(N'2016-12-23T09:13:02.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1276, N'SBUDCAE             ', N'Brown                                                                                               ', N'Sweetwing                                                                                           ', 21, 8, 0, CAST(N'2016-12-23T09:13:02.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1277, N'UFDWYWE             ', N'Force                                                                                               ', N'Ultra                                                                                               ', 58, 3, 0, CAST(N'2016-12-23T09:13:02.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1278, N'KHSHINU             ', N'Hietamies                                                                                           ', N'Katariina                                                                                           ', 64, 2, 0, CAST(N'2016-12-23T09:13:02.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1279, N'MSFUQCK             ', N'Starscream                                                                                          ', N'Methoataske                                                                                         ', 38, 7, 0, CAST(N'2016-12-23T09:13:03.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1280, N'HLLWYDO             ', N'Longhole                                                                                            ', N'Hingle                                                                                              ', 7, 2, 0, CAST(N'2016-12-23T09:13:03.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1281, N'JAUINSF             ', N'Andersen                                                                                            ', N'Jellygleam                                                                                          ', 70, 5, 0, CAST(N'2016-12-23T09:13:03.627' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1282, N'KLBBFHE             ', N'Lightfoot                                                                                           ', N'Kerr                                                                                                ', 18, 3, 0, CAST(N'2016-12-23T09:13:03.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1283, N'DZLTQYI             ', N'Zuleika                                                                                             ', N'Dina                                                                                                ', 30, 7, 0, CAST(N'2016-12-23T09:13:04.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1284, N'JVPJXBL             ', N'Viktoria                                                                                            ', N'Jemmy                                                                                               ', 10, 8, 0, CAST(N'2016-12-23T09:13:04.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1285, N'SPAHOAW             ', N'Proudfoot                                                                                           ', N'Savanna                                                                                             ', 41, 4, 0, CAST(N'2016-12-23T09:13:04.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1286, N'VBXSAIQ             ', N'Blitzwing                                                                                           ', N'Viktoria                                                                                            ', 4, 1, 0, CAST(N'2016-12-23T09:13:04.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1287, N'APFPQPI             ', N'Philomel                                                                                            ', N'Applebreeze                                                                                         ', 19, 6, 0, CAST(N'2016-12-23T09:13:04.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1288, N'GOYIAOI             ', N'Optimus                                                                                             ', N'Gilchrist                                                                                           ', 36, 2, 0, CAST(N'2016-12-23T09:13:05.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1289, N'KSXEQEQ             ', N'Siiri                                                                                               ', N'Kadri                                                                                               ', 13, 6, 0, CAST(N'2016-12-23T09:13:05.317' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1290, N'HMKETNN             ', N'MacClelland                                                                                         ', N'Haidee                                                                                              ', 42, 6, 0, CAST(N'2016-12-23T09:13:05.527' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1291, N'VPFHNUR             ', N'Potatochaser                                                                                        ', N'Viktoria                                                                                            ', 5, 3, 0, CAST(N'2016-12-23T09:13:05.753' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1292, N'RBMVBKK             ', N'Bunce                                                                                               ', N'Robert                                                                                              ', 39, 2, 0, CAST(N'2016-12-23T09:13:05.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1293, N'UWLHMRK             ', N'Whitfoot                                                                                            ', N'Ultra                                                                                               ', 33, 1, 0, CAST(N'2016-12-23T09:13:06.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1294, N'DTXMFXW             ', N'T k                                                                                                 ', N'Dirk                                                                                                ', 16, 6, 0, CAST(N'2016-12-23T09:13:06.393' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1295, N'APBCWPW             ', N'Pocahontas                                                                                          ', N'Anna                                                                                                ', 2, 5, 0, CAST(N'2016-12-23T09:13:06.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1296, N'PJCAQAF             ', N'Julitta                                                                                             ', N'Pollyanna                                                                                           ', 71, 8, 0, CAST(N'2016-12-23T09:13:06.817' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1297, N'HKDTHNB             ', N'Kaisa                                                                                               ', N'Henna                                                                                               ', 17, 1, 0, CAST(N'2016-12-23T09:13:07.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1298, N'AMNRWQW             ', N'McSpuddy                                                                                            ', N'Alfred                                                                                              ', 40, 3, 0, CAST(N'2016-12-23T09:13:07.247' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1299, N'DSXUQCT             ', N'Saraste                                                                                             ', N'Diamond                                                                                             ', 11, 8, 0, CAST(N'2016-12-23T09:13:07.463' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1300, N'EGUULWE             ', N'Goold                                                                                               ', N'Elsdon                                                                                              ', 20, 3, 0, CAST(N'2016-12-23T09:13:07.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1301, N'AGWBVIV             ', N'Grubb                                                                                               ', N'Almira                                                                                              ', 28, 4, 0, CAST(N'2016-12-23T09:13:07.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1302, N'GCMYANQ             ', N'Chubb                                                                                               ', N'Gerda                                                                                               ', 14, 3, 0, CAST(N'2016-12-23T09:13:08.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1303, N'CSDLJOY             ', N'Schuler                                                                                             ', N'Chickenfarmer                                                                                       ', 8, 6, 0, CAST(N'2016-12-23T09:13:08.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1304, N'MSAVBDO             ', N'Sparklemoon                                                                                         ', N'May                                                                                                 ', 29, 6, 0, CAST(N'2016-12-23T09:13:14.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1305, N'DRWVBDY             ', N'Ranald                                                                                              ', N'Diamond                                                                                             ', 9, 3, 0, CAST(N'2016-12-23T09:13:14.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1306, N'RCGDQPK             ', N'Clarkson                                                                                            ', N'Runabout                                                                                            ', 15, 1, 0, CAST(N'2016-12-23T09:13:15.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1307, N'BKIMMAX             ', N'Keith                                                                                               ', N'Beeatriks                                                                                           ', 3, 3, 0, CAST(N'2016-12-23T09:13:15.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1308, N'AJLUFPO             ', N'J rvinen                                                                                            ', N'Aloysius                                                                                            ', 52, 2, 0, CAST(N'2016-12-23T09:13:15.557' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1309, N'TGPCUWE             ', N'Grubb                                                                                               ', N'Tasgall                                                                                             ', 12, 8, 0, CAST(N'2016-12-23T09:13:15.767' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1310, N'CGEDYLF             ', N'Gentlemoon                                                                                          ', N'Crush                                                                                               ', 35, 4, 0, CAST(N'2016-12-23T09:13:15.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1311, N'PPRAJFR             ', N'Potatochaser                                                                                        ', N'Phoenix                                                                                             ', 6, 4, 0, CAST(N'2016-12-23T09:13:16.203' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1312, N'PRALMYY             ', N'Rippersnapper                                                                                       ', N'Phoenix                                                                                             ', 21, 3, 0, CAST(N'2016-12-23T09:13:16.417' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1313, N'SABEJKR             ', N'Amsel                                                                                               ', N'Sofia                                                                                               ', 58, 3, 0, CAST(N'2016-12-23T09:13:16.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1314, N'RCEUAVN             ', N'Christmas                                                                                           ', N'Robert                                                                                              ', 64, 2, 0, CAST(N'2016-12-23T09:13:16.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1315, N'QOSYEJL             ', N'Ogden                                                                                               ', N'Quickdance                                                                                          ', 38, 4, 0, CAST(N'2016-12-23T09:13:17.083' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1316, N'VQXSSEC             ', N'Quickberry                                                                                          ', N'Viktoria                                                                                            ', 7, 5, 0, CAST(N'2016-12-23T09:13:17.303' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1317, N'MFJPEPV             ', N'Fraser                                                                                              ', N'Mari                                                                                                ', 70, 4, 0, CAST(N'2016-12-23T09:13:17.517' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1318, N'MLJNCKC             ', N'Levy                                                                                                ', N'Marika                                                                                              ', 18, 1, 0, CAST(N'2016-12-23T09:13:17.730' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1319, N'DWYQUGL             ', N'Whitfoot                                                                                            ', N'Dirk                                                                                                ', 30, 4, 0, CAST(N'2016-12-23T09:13:17.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1320, N'DGQXTBU             ', N'Grubb                                                                                               ', N'Dirk                                                                                                ', 10, 1, 0, CAST(N'2016-12-23T09:13:18.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1321, N'FAKCRGD             ', N'Anthonyson                                                                                          ', N'Fergus                                                                                              ', 41, 4, 0, CAST(N'2016-12-23T09:13:18.367' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1322, N'HIRSSYN             ', N'Ibbott                                                                                              ', N'Highbrow                                                                                            ', 4, 6, 0, CAST(N'2016-12-23T09:13:18.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1323, N'PGIFUAC             ', N'Golddust                                                                                            ', N'Pansy                                                                                               ', 19, 4, 0, CAST(N'2016-12-23T09:13:18.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1324, N'MGHJHVN             ', N'Goold                                                                                               ', N'Maitland                                                                                            ', 36, 8, 0, CAST(N'2016-12-23T09:13:19.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1325, N'CHTTRSF             ', N'Hofmann                                                                                             ', N'Carbry                                                                                              ', 13, 8, 0, CAST(N'2016-12-23T09:13:19.267' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1326, N'HAHVJAQ             ', N'Andersen                                                                                            ', N'Hingle                                                                                              ', 42, 2, 0, CAST(N'2016-12-23T09:13:19.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1327, N'PLQPRCR             ', N'Lashawnda                                                                                           ', N'Piloqutinnguaq                                                                                      ', 5, 3, 0, CAST(N'2016-12-23T09:13:19.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1328, N'OASGUDR             ', N'Aylen                                                                                               ', N'Outi                                                                                                ', 39, 5, 0, CAST(N'2016-12-23T09:13:19.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1329, N'AJEYNMQ             ', N'Jeffers                                                                                             ', N'Aurel                                                                                               ', 33, 4, 0, CAST(N'2016-12-23T09:13:20.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1330, N'WBPHKJJ             ', N'Breakdown                                                                                           ', N'Wingspan                                                                                            ', 16, 2, 0, CAST(N'2016-12-23T09:13:20.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1331, N'MJMJHVJ             ', N'J rvinen                                                                                            ', N'Mirjam                                                                                              ', 2, 1, 0, CAST(N'2016-12-23T09:13:20.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1332, N'ENREVYN             ', N'Nye                                                                                                 ', N'Everild                                                                                             ', 71, 6, 0, CAST(N'2016-12-23T09:13:20.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1333, N'PRIDQEB             ', N'Rippersnapper                                                                                       ', N'Potatosower                                                                                         ', 17, 4, 0, CAST(N'2016-12-23T09:13:20.963' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1334, N'AGNWBYQ             ', N'Glitterfluff                                                                                        ', N'Atomic                                                                                              ', 40, 7, 0, CAST(N'2016-12-23T09:13:21.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1335, N'AKKTXCP             ', N'Kaisa                                                                                               ', N'Ayelen                                                                                              ', 11, 4, 0, CAST(N'2016-12-23T09:13:21.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1336, N'CNBVDTM             ', N'Nita                                                                                                ', N'Crush                                                                                               ', 20, 3, 0, CAST(N'2016-12-23T09:13:22.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1337, N'SHGPLUN             ', N'Hogpen                                                                                              ', N'Scotty                                                                                              ', 28, 7, 0, CAST(N'2016-12-23T09:13:22.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1338, N'LBAKBVV             ', N'Baphomet                                                                                            ', N'Lalia                                                                                               ', 14, 5, 0, CAST(N'2016-12-23T09:13:22.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1339, N'FSAKOBL             ', N'Siiri                                                                                               ', N'Fergus                                                                                              ', 8, 6, 0, CAST(N'2016-12-23T09:13:22.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1340, N'PGYBKEX             ', N'Glittercloud                                                                                        ', N'Powerglide                                                                                          ', 29, 1, 0, CAST(N'2016-12-23T09:13:34.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1449, N'DTOSAWX             ', N'T k                                                                                                 ', N'Double                                                                                              ', 29, 3, 0, CAST(N'2016-12-23T10:15:45.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1450, N'JGITDDF             ', N'Golddust                                                                                            ', N'Jochim                                                                                              ', 9, 5, 0, CAST(N'2016-12-23T10:15:45.380' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1451, N'GCRHNYQ             ', N'Calfuray                                                                                            ', N'Grimalda                                                                                            ', 15, 1, 0, CAST(N'2016-12-23T10:15:45.593' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1452, N'PBGAFOK             ', N'Badcock                                                                                             ', N'Pansy                                                                                               ', 3, 1, 0, CAST(N'2016-12-23T10:15:45.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1453, N'DSISUAB             ', N'Scourge                                                                                             ', N'Dietfried                                                                                           ', 52, 7, 0, CAST(N'2016-12-23T10:15:46.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1454, N'CSGNPPE             ', N'Saraste                                                                                             ', N'Corona                                                                                              ', 12, 3, 0, CAST(N'2016-12-23T10:15:46.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1455, N'RLYTDWE             ', N'Lightfoot                                                                                           ', N'Rollo                                                                                               ', 35, 3, 0, CAST(N'2016-12-23T10:15:46.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1456, N'RDOJWLI             ', N'Donohoe                                                                                             ', N'Ruairidh                                                                                            ', 6, 8, 0, CAST(N'2016-12-23T10:15:46.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1457, N'FSDCAEX             ', N'Sulin                                                                                               ', N'Fergus                                                                                              ', 21, 6, 0, CAST(N'2016-12-23T10:15:46.933' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1458, N'MDWYWEI             ', N'Donohoe                                                                                             ', N'Marika                                                                                              ', 58, 5, 0, CAST(N'2016-12-23T10:15:47.157' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1459, N'MSHINUG             ', N'Smith                                                                                               ', N'Myrtle                                                                                              ', 64, 8, 0, CAST(N'2016-12-23T10:15:47.367' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1460, N'EEUQCKU             ', N'Error                                                                                               ', N'Elsdon                                                                                              ', 38, 8, 0, CAST(N'2016-12-23T10:15:47.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1461, N'AMWYDOF             ', N'Moongaze                                                                                            ', N'Arabella                                                                                            ', 7, 6, 0, CAST(N'2016-12-23T10:15:47.797' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1462, N'CSINSFN             ', N'Smith                                                                                               ', N'Clearkiss                                                                                           ', 70, 7, 0, CAST(N'2016-12-23T10:15:48.007' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1463, N'CNBFHEH             ', N'Nevin                                                                                               ', N'Chickenfarmer                                                                                       ', 18, 3, 0, CAST(N'2016-12-23T10:15:48.220' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1464, N'SGTQYIV             ', N'Golddust                                                                                            ', N'Silvernose                                                                                          ', 30, 3, 0, CAST(N'2016-12-23T10:15:48.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1465, N'RKJXBLW             ', N'Kaisa                                                                                               ', N'Rosa                                                                                                ', 10, 3, 0, CAST(N'2016-12-23T10:15:48.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1466, N'DAHOAWK             ', N'Albert                                                                                              ', N'Dina                                                                                                ', 41, 6, 0, CAST(N'2016-12-23T10:15:48.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1467, N'GGSAIQB             ', N'Goldworthy                                                                                          ', N'Grimalda                                                                                            ', 4, 6, 0, CAST(N'2016-12-23T10:15:49.073' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1468, N'ABPQPIQ             ', N'Badcock                                                                                             ', N'Almira                                                                                              ', 19, 1, 0, CAST(N'2016-12-23T10:15:49.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1469, N'AGIAOID             ', N'Goold                                                                                               ', N'Anna                                                                                                ', 36, 2, 0, CAST(N'2016-12-23T10:15:49.507' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1470, N'ASQEQQV             ', N'Studwick                                                                                            ', N'Aloysius                                                                                            ', 13, 3, 0, CAST(N'2016-12-23T10:15:49.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1471, N'AOTNNQK             ', N'Ogden                                                                                               ', N'Assassin                                                                                            ', 42, 6, 0, CAST(N'2016-12-23T10:15:49.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1472, N'HBNURHO             ', N'Breakdown                                                                                           ', N'Harmony                                                                                             ', 5, 7, 0, CAST(N'2016-12-23T10:15:50.143' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1473, N'RBBKKEO             ', N'Brandagamba                                                                                         ', N'Rowan                                                                                               ', 39, 4, 0, CAST(N'2016-12-23T10:15:50.363' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1474, N'ABMRKCE             ', N'Breakdown                                                                                           ', N'Arabella                                                                                            ', 33, 7, 0, CAST(N'2016-12-23T10:15:50.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1475, N'JSFXWPP             ', N'Sugarfeather                                                                                        ', N'Jessamine                                                                                           ', 16, 7, 0, CAST(N'2016-12-23T10:15:50.823' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1476, N'NAWPWOD             ', N'Andersen                                                                                            ', N'Nydia                                                                                               ', 2, 4, 0, CAST(N'2016-12-23T10:15:51.037' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1477, N'PMQAFWU             ', N'McRae                                                                                               ', N'Pollyanna                                                                                           ', 71, 7, 0, CAST(N'2016-12-23T10:15:51.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1478, N'AMHNBAQ             ', N'McBelle                                                                                             ', N'Aleksandra                                                                                          ', 17, 1, 0, CAST(N'2016-12-23T10:15:51.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1479, N'SSWQWIK             ', N'Seedfarmer                                                                                          ', N'Spud                                                                                                ', 40, 7, 0, CAST(N'2016-12-23T10:15:51.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1480, N'ASQCTXV             ', N'Sulin                                                                                               ', N'Anna                                                                                                ', 11, 2, 0, CAST(N'2016-12-23T10:15:51.893' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1481, N'MSLWEGU             ', N'Sulin                                                                                               ', N'Mimosa                                                                                              ', 20, 3, 0, CAST(N'2016-12-23T10:15:52.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1482, N'SSVIVJC             ', N'Simpkin                                                                                             ', N'Savanna                                                                                             ', 28, 8, 0, CAST(N'2016-12-23T10:15:52.327' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1483, N'DFANQHD             ', N'Fairbairn                                                                                           ', N'Dina                                                                                                ', 14, 2, 0, CAST(N'2016-12-23T10:15:52.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1484, N'LFJOYRG             ', N'Flutternose                                                                                         ', N'Loyd                                                                                                ', 8, 8, 0, CAST(N'2016-12-23T10:15:52.753' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1485, N'PBQHCAR             ', N'Blake                                                                                               ', N'Punch                                                                                               ', 29, 6, 0, CAST(N'2016-12-23T10:16:08.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1486, N'ACUXELI             ', N'Cosmicmother                                                                                        ', N'Amanda                                                                                              ', 9, 2, 0, CAST(N'2016-12-23T10:16:08.743' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1487, N'MMSAPYH             ', N'MacClelland                                                                                         ', N'Maitland                                                                                            ', 15, 3, 0, CAST(N'2016-12-23T10:16:08.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1488, N'MCYOCBT             ', N'Chubb                                                                                               ', N'Matilda                                                                                             ', 3, 7, 0, CAST(N'2016-12-23T10:16:09.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1489, N'BLFTMCH             ', N'Lightfoot                                                                                           ', N'Bob                                                                                                 ', 52, 7, 0, CAST(N'2016-12-23T10:16:09.387' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1490, N'MMGQDRQ             ', N'McNaughton                                                                                          ', N'Maitland                                                                                            ', 12, 5, 0, CAST(N'2016-12-23T10:16:09.607' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1491, N'DRKVLQS             ', N'Roxelana                                                                                            ', N'Dietfried                                                                                           ', 35, 2, 0, CAST(N'2016-12-23T10:16:09.817' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1492, N'GVMCUDE             ', N'Viktoria                                                                                            ', N'Gilchrist                                                                                           ', 6, 8, 0, CAST(N'2016-12-23T10:16:10.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1493, N'TGYGEHP             ', N'Glittersheen                                                                                        ', N'Twinkleleaf                                                                                         ', 21, 3, 0, CAST(N'2016-12-23T10:16:10.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1494, N'CKBOBVM             ', N'Koenig                                                                                              ', N'Cyra                                                                                                ', 58, 4, 0, CAST(N'2016-12-23T10:16:10.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1495, N'APBFICR             ', N'Payton                                                                                              ', N'Anna                                                                                                ', 64, 2, 0, CAST(N'2016-12-23T10:16:10.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1496, N'APCFLGI             ', N'Potatochaser                                                                                        ', N'Amanda                                                                                              ', 38, 2, 0, CAST(N'2016-12-23T10:16:10.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1497, N'JDUKSNN             ', N'Dazzlegaze                                                                                          ', N'Jochim                                                                                              ', 7, 8, 0, CAST(N'2016-12-23T10:16:11.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1498, N'GMQRDPK             ', N'McGently                                                                                            ', N'Gerda                                                                                               ', 70, 7, 0, CAST(N'2016-12-23T10:16:11.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1499, N'LBLKVRB             ', N'Blake                                                                                               ', N'Loyd                                                                                                ', 18, 7, 0, CAST(N'2016-12-23T10:16:11.533' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1500, N'BCSDTWG             ', N'Cyra                                                                                                ', N'Belle                                                                                               ', 30, 5, 0, CAST(N'2016-12-23T10:16:11.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1501, N'AGDVISA             ', N'Gently                                                                                              ', N'Aili                                                                                                ', 10, 4, 0, CAST(N'2016-12-23T10:16:11.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1502, N'ALFNNQA             ', N'Leelo                                                                                               ', N'Anna                                                                                                ', 41, 4, 0, CAST(N'2016-12-23T10:16:12.173' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1503, N'ANTGLHB             ', N'Naira                                                                                               ', N'Arlen                                                                                               ', 4, 5, 0, CAST(N'2016-12-23T10:16:12.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1504, N'CMHCNUG             ', N'McBelle                                                                                             ', N'Corona                                                                                              ', 19, 5, 0, CAST(N'2016-12-23T10:16:12.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1505, N'DITHXWD             ', N'Itzel                                                                                               ', N'Dietfried                                                                                           ', 36, 2, 0, CAST(N'2016-12-23T10:16:12.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1506, N'GPAJJWA             ', N'Paasivirta                                                                                          ', N'Gilchrist                                                                                           ', 13, 8, 0, CAST(N'2016-12-23T10:16:13.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1507, N'KGMUMBH             ', N'Glitterfluff                                                                                        ', N'Kim                                                                                                 ', 42, 1, 0, CAST(N'2016-12-23T10:16:13.253' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1508, N'HMILKUW             ', N'MacClelland                                                                                         ', N'Hannah                                                                                              ', 5, 4, 0, CAST(N'2016-12-23T10:16:13.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1509, N'CCXTINT             ', N'Chubb                                                                                               ', N'Carbry                                                                                              ', 39, 8, 0, CAST(N'2016-12-23T10:16:13.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1510, N'PKFALDD             ', N'Kreka                                                                                               ', N'Piloqutinnguaq                                                                                      ', 33, 8, 0, CAST(N'2016-12-23T10:16:13.903' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1511, N'DCAFVTL             ', N'Chubb                                                                                               ', N'Dina                                                                                                ', 16, 4, 0, CAST(N'2016-12-23T10:16:14.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1512, N'MMOOUWT             ', N'McRae                                                                                               ', N'Mimosa                                                                                              ', 2, 5, 0, CAST(N'2016-12-23T10:16:14.333' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1513, N'TBJJHYY             ', N'Blitzwing                                                                                           ', N'Twinkleleaf                                                                                         ', 71, 2, 0, CAST(N'2016-12-23T10:16:14.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1514, N'HAXQKXD             ', N'Age                                                                                                 ', N'Herbie                                                                                              ', 17, 6, 0, CAST(N'2016-12-23T10:16:14.773' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1515, N'FAFXEQF             ', N'Anthonyson                                                                                          ', N'Forest                                                                                              ', 40, 7, 0, CAST(N'2016-12-23T10:16:14.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1516, N'DGKLVOF             ', N'Glittercloud                                                                                        ', N'Dietfried                                                                                           ', 11, 5, 0, CAST(N'2016-12-23T10:16:15.193' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1517, N'GRENQWB             ', N'Rippersnapper                                                                                       ', N'Grimalda                                                                                            ', 20, 8, 0, CAST(N'2016-12-23T10:16:15.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1518, N'MMNSPXC             ', N'Meissner                                                                                            ', N'Matilda                                                                                             ', 28, 4, 0, CAST(N'2016-12-23T10:16:15.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1519, N'KOUEITF             ', N'Ogden                                                                                               ', N'Kadri                                                                                               ', 14, 4, 0, CAST(N'2016-12-23T10:16:15.857' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1520, N'AGTFFPV             ', N'Glittercloud                                                                                        ', N'Anna                                                                                                ', 8, 6, 0, CAST(N'2016-12-23T10:16:16.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1521, N'CLIDOKF             ', N'Lashawnda                                                                                           ', N'Clearkiss                                                                                           ', 29, 8, 0, CAST(N'2016-12-23T10:16:28.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1522, N'AHKTUSQ             ', N'Hofmann                                                                                             ', N'Arabella                                                                                            ', 9, 3, 0, CAST(N'2016-12-23T10:16:29.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1523, N'SIJFDJI             ', N'Ibbott                                                                                              ', N'Sean                                                                                                ', 15, 1, 0, CAST(N'2016-12-23T10:16:29.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1524, N'ALYFPMW             ', N'Lashawnda                                                                                           ', N'Amanda                                                                                              ', 3, 5, 0, CAST(N'2016-12-23T10:16:29.457' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1525, N'ABNSDXY             ', N'Bolger                                                                                              ', N'Aleksander                                                                                          ', 52, 1, 0, CAST(N'2016-12-23T10:16:29.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1526, N'AFGVDCI             ', N'Force                                                                                               ', N'Applebreeze                                                                                         ', 12, 1, 0, CAST(N'2016-12-23T10:16:29.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1527, N'ECRSOOB             ', N'Clarkson                                                                                            ', N'Elsdon                                                                                              ', 35, 2, 0, CAST(N'2016-12-23T10:16:30.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1528, N'HADJYPM             ', N'Amsel                                                                                               ', N'Highbrow                                                                                            ', 6, 6, 0, CAST(N'2016-12-23T10:16:30.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1529, N'PMHURUY             ', N'McNaughton                                                                                          ', N'Pigplanter                                                                                          ', 21, 4, 0, CAST(N'2016-12-23T10:16:30.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1530, N'DKUOBAA             ', N'Koenig                                                                                              ', N'Daniel                                                                                              ', 58, 3, 0, CAST(N'2016-12-23T10:16:30.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1531, N'KBTXXQD             ', N'Bolger-Baggins                                                                                      ', N'Knut                                                                                                ', 64, 3, 0, CAST(N'2016-12-23T10:16:31.033' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1532, N'MVRATTU             ', N'Viktoria                                                                                            ', N'Matilda                                                                                             ', 38, 3, 0, CAST(N'2016-12-23T10:16:31.257' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1533, N'PDWDODA             ', N'Donohoe                                                                                             ', N'Pandora                                                                                             ', 7, 4, 0, CAST(N'2016-12-23T10:16:31.463' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1534, N'LTSMNIP             ', N'T hirih                                                                                             ', N'Lalla                                                                                               ', 70, 3, 0, CAST(N'2016-12-23T10:16:31.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1535, N'VKNGNXL             ', N'Klowee                                                                                              ', N'Victor                                                                                              ', 18, 7, 0, CAST(N'2016-12-23T10:16:31.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1536, N'PNGUOKY             ', N'Nita                                                                                                ', N'Punch                                                                                               ', 30, 6, 0, CAST(N'2016-12-23T10:16:32.103' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1537, N'SSDNWFV             ', N'Siiri                                                                                               ', N'Spud                                                                                                ', 10, 2, 0, CAST(N'2016-12-23T10:16:32.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1538, N'FMLYGVO             ', N'Moongaze                                                                                            ', N'Fluttersheen                                                                                        ', 41, 6, 0, CAST(N'2016-12-23T10:16:32.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1539, N'KGQVDHB             ', N'Gears                                                                                               ', N'Katariina                                                                                           ', 4, 8, 0, CAST(N'2016-12-23T10:16:32.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1540, N'AGYCJBO             ', N'Goold                                                                                               ', N'Alfred                                                                                              ', 19, 1, 0, CAST(N'2016-12-23T10:16:32.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1541, N'NSHJBSF             ', N'Starscream                                                                                          ', N'Nydia                                                                                               ', 36, 3, 0, CAST(N'2016-12-23T10:16:33.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1542, N'BKBSCKY             ', N'Kateri                                                                                              ', N'Beeatriks                                                                                           ', 13, 3, 0, CAST(N'2016-12-23T10:16:33.397' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1543, N'SFGJCFM             ', N'Fairbairn                                                                                           ', N'Sofia                                                                                               ', 42, 3, 0, CAST(N'2016-12-23T10:16:33.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1544, N'PMGHNKX             ', N'Maoilios                                                                                            ', N'Pigplanter                                                                                          ', 5, 3, 0, CAST(N'2016-12-23T10:16:33.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1545, N'CMIEFAX             ', N'McBelle                                                                                             ', N'Crush                                                                                               ', 39, 2, 0, CAST(N'2016-12-23T10:16:34.057' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1546, N'MJPSECA             ', N'Jazz                                                                                                ', N'Melissa                                                                                             ', 33, 8, 0, CAST(N'2016-12-23T10:16:34.273' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1547, N'THQILHC             ', N'Hogpen                                                                                              ', N'Tiia                                                                                                ', 16, 7, 0, CAST(N'2016-12-23T10:16:34.487' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1548, N'AIMYOIP             ', N'Itzel                                                                                               ', N'Ayelen                                                                                              ', 2, 1, 0, CAST(N'2016-12-23T10:16:34.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1549, N'KSIPDAX             ', N'Sideswipe                                                                                           ', N'Kermit                                                                                              ', 71, 5, 0, CAST(N'2016-12-23T10:16:34.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1550, N'ABAXEDC             ', N'Bunce                                                                                               ', N'Assassin                                                                                            ', 17, 1, 0, CAST(N'2016-12-23T10:16:35.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1551, N'DTAHMKS             ', N'Tyrrell                                                                                             ', N'Donnamira                                                                                           ', 40, 6, 0, CAST(N'2016-12-23T10:16:35.363' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1552, N'OHTFOYO             ', N'Headstrong                                                                                          ', N'Outi                                                                                                ', 11, 1, 0, CAST(N'2016-12-23T10:16:35.573' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1553, N'SAQTGMP             ', N'Ally                                                                                                ', N'Sleek                                                                                               ', 20, 5, 0, CAST(N'2016-12-23T10:16:35.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1554, N'SKIFDCG             ', N'Kaisa                                                                                               ', N'Sleek                                                                                               ', 28, 1, 0, CAST(N'2016-12-23T10:16:36.213' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1555, N'BSIFXMF             ', N'Scourge                                                                                             ', N'Beeatriks                                                                                           ', 14, 7, 0, CAST(N'2016-12-23T10:16:36.533' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1556, N'PNTIOIM             ', N'Nye                                                                                                 ', N'Pigplanter                                                                                          ', 8, 2, 0, CAST(N'2016-12-23T10:16:36.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1557, N'DHNEPSW             ', N'Headstrong                                                                                          ', N'Donnamira                                                                                           ', 29, 7, 0, CAST(N'2016-12-23T10:16:56.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1558, N'KGTJVMC             ', N'Goldworthy                                                                                          ', N'Kerr                                                                                                ', 9, 1, 0, CAST(N'2016-12-23T10:16:57.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1559, N'RKAFNEK             ', N'Keith                                                                                               ', N'Ross                                                                                                ', 15, 6, 0, CAST(N'2016-12-23T10:16:57.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1560, N'GKEAOBX             ', N'Keith                                                                                               ', N'Gumphauler                                                                                          ', 3, 7, 0, CAST(N'2016-12-23T10:16:57.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1561, N'GGEVUPD             ', N'Goold                                                                                               ', N'Gears                                                                                               ', 52, 1, 0, CAST(N'2016-12-23T10:16:57.753' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1562, N'GSSSVIY             ', N'Saraste                                                                                             ', N'Goldshy                                                                                             ', 12, 3, 0, CAST(N'2016-12-23T10:16:57.967' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1563, N'ROFDRMS             ', N'Ogden                                                                                               ', N'Rhino                                                                                               ', 35, 7, 0, CAST(N'2016-12-23T10:16:58.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1564, N'DBWWRAJ             ', N'Badcock                                                                                             ', N'Dirk                                                                                                ', 6, 2, 0, CAST(N'2016-12-23T10:16:58.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1565, N'SRPCXAH             ', N'Roxelana                                                                                            ', N'Savanna                                                                                             ', 21, 4, 0, CAST(N'2016-12-23T10:16:58.607' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1566, N'PMGRAQS             ', N'Mirjam                                                                                              ', N'Punch                                                                                               ', 58, 1, 0, CAST(N'2016-12-23T10:16:58.817' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1567, N'PDHHYBX             ', N'Dulcinea                                                                                            ', N'Powerglide                                                                                          ', 64, 7, 0, CAST(N'2016-12-23T10:16:59.033' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1568, N'OSWRKXO             ', N'Smith                                                                                               ', N'Outi                                                                                                ', 38, 1, 0, CAST(N'2016-12-23T10:16:59.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1569, N'SWPNSWX             ', N'Wheeljack                                                                                           ', N'Sacnite                                                                                             ', 7, 2, 0, CAST(N'2016-12-23T10:16:59.457' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1570, N'MPBDAPA             ', N'Pocahontas                                                                                          ', N'Maitland                                                                                            ', 70, 3, 0, CAST(N'2016-12-23T10:16:59.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1571, N'AFJHGFT             ', N'Flutternose                                                                                         ', N'Angelica                                                                                            ', 18, 5, 0, CAST(N'2016-12-23T10:16:59.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1572, N'ASWLCOS             ', N'Sigrid                                                                                              ', N'Arlen                                                                                               ', 30, 7, 0, CAST(N'2016-12-23T10:17:00.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1573, N'TMXAOQT             ', N'McCringleberry                                                                                      ', N'Tasgall                                                                                             ', 10, 7, 0, CAST(N'2016-12-23T10:17:00.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1574, N'TBYGPSX             ', N'Badcock                                                                                             ', N'Trey                                                                                                ', 41, 3, 0, CAST(N'2016-12-23T10:17:00.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1575, N'SFVUXQK             ', N'Force                                                                                               ', N'Sweetstar                                                                                           ', 4, 5, 0, CAST(N'2016-12-23T10:17:00.763' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1576, N'SRUCUHN             ', N'Rippersnapper                                                                                       ', N'Sleek                                                                                               ', 19, 3, 0, CAST(N'2016-12-23T10:17:00.973' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1577, N'MWWNEVQ             ', N'Warrick                                                                                             ', N'Mari                                                                                                ', 36, 6, 0, CAST(N'2016-12-23T10:17:01.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1578, N'GRNAWRW             ', N'Rock                                                                                                ', N'Gobnata                                                                                             ', 13, 1, 0, CAST(N'2016-12-23T10:17:01.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1579, N'DSSGVQK             ', N'School                                                                                              ', N'Donnamira                                                                                           ', 42, 7, 0, CAST(N'2016-12-23T10:17:01.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1580, N'SVPPBDM             ', N'Viktoria                                                                                            ', N'Scourge                                                                                             ', 5, 3, 0, CAST(N'2016-12-23T10:17:01.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1581, N'AHTSRTL             ', N'Hanley                                                                                              ', N'Arlen                                                                                               ', 39, 6, 0, CAST(N'2016-12-23T10:17:02.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1582, N'EDKGTKH             ', N'Dulcinea                                                                                            ', N'Elsdon                                                                                              ', 33, 3, 0, CAST(N'2016-12-23T10:17:02.277' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1583, N'PFTFOCB             ', N'Flutternose                                                                                         ', N'Pipaluk                                                                                             ', 16, 7, 0, CAST(N'2016-12-23T10:17:02.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1584, N'MSPLAXK             ', N'Saunders                                                                                            ', N'Melissa                                                                                             ', 2, 4, 0, CAST(N'2016-12-23T10:17:02.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1585, N'GLPRGWT             ', N'Lightfoot                                                                                           ', N'Gentlegleam                                                                                         ', 71, 3, 0, CAST(N'2016-12-23T10:17:02.943' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1586, N'EBVPDPF             ', N'Brandagamba                                                                                         ', N'Elsdon                                                                                              ', 17, 5, 0, CAST(N'2016-12-23T10:17:03.157' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1587, N'CCTUKYT             ', N'Cosmicmother                                                                                        ', N'Carbry                                                                                              ', 40, 8, 0, CAST(N'2016-12-23T10:17:03.380' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1588, N'DLFEGOV             ', N'Larivaara                                                                                           ', N'Diamond                                                                                             ', 11, 1, 0, CAST(N'2016-12-23T10:17:03.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1589, N'VLWSFWH             ', N'Lashawnda                                                                                           ', N'Viktoria                                                                                            ', 20, 8, 0, CAST(N'2016-12-23T10:17:03.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1590, N'CPHLTRD             ', N'Paasivirta                                                                                          ', N'Crazy                                                                                               ', 28, 7, 0, CAST(N'2016-12-23T10:17:04.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1591, N'HPCYEWP             ', N'Paasivirta                                                                                          ', N'Highbrow                                                                                            ', 14, 6, 0, CAST(N'2016-12-23T10:17:04.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1592, N'SMPMGYT             ', N'Meissner                                                                                            ', N'Shaw                                                                                                ', 8, 1, 0, CAST(N'2016-12-23T10:17:04.433' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1593, N'SJQIJXP             ', N'J rvinen                                                                                            ', N'Sweetstar                                                                                           ', 29, 5, 0, CAST(N'2016-12-23T10:17:17.823' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1594, N'CRDTIQH             ', N'Ruairi                                                                                              ', N'Carbry                                                                                              ', 9, 5, 0, CAST(N'2016-12-23T10:17:18.043' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1595, N'DKJKCKG             ', N'Kaisa                                                                                               ', N'Dirtgreaser                                                                                         ', 15, 7, 0, CAST(N'2016-12-23T10:17:18.253' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1596, N'PSJTMRM             ', N'Stone                                                                                               ', N'Potatosower                                                                                         ', 3, 3, 0, CAST(N'2016-12-23T10:17:18.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1597, N'HKTENVN             ', N'Kreka                                                                                               ', N'Hingle                                                                                              ', 52, 2, 0, CAST(N'2016-12-23T10:17:18.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1598, N'PGOGBLL             ', N'Golddust                                                                                            ', N'Potatosower                                                                                         ', 12, 3, 0, CAST(N'2016-12-23T10:17:18.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1599, N'DLJYBFE             ', N'Levy                                                                                                ', N'Daisy                                                                                               ', 35, 4, 0, CAST(N'2016-12-23T10:17:19.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1600, N'JHYQMBU             ', N'Hornblower                                                                                          ', N'Johanna                                                                                             ', 6, 2, 0, CAST(N'2016-12-23T10:17:19.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1601, N'DSFBFBP             ', N'Simpkin                                                                                             ', N'Dirtgreaser                                                                                         ', 21, 1, 0, CAST(N'2016-12-23T10:17:19.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1602, N'KSBPCXA             ', N'Sludge                                                                                              ', N'Kim                                                                                                 ', 58, 7, 0, CAST(N'2016-12-23T10:17:19.743' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1603, N'ZGXYBYL             ', N'Graves                                                                                              ', N'Za re                                                                                               ', 64, 8, 0, CAST(N'2016-12-23T10:17:19.953' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1604, N'FJJBAPN             ', N'Jazz                                                                                                ', N'Forest                                                                                              ', 38, 3, 0, CAST(N'2016-12-23T10:17:20.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1605, N'VSQFKVW             ', N'Simpkin                                                                                             ', N'Victor                                                                                              ', 7, 3, 0, CAST(N'2016-12-23T10:17:20.373' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1606, N'AIBNMTD             ', N'Ibbott                                                                                              ', N'Ailpein                                                                                             ', 70, 2, 0, CAST(N'2016-12-23T10:17:20.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1607, N'AUIRKYV             ', N'Ulalume                                                                                             ', N'Arcana                                                                                              ', 18, 1, 0, CAST(N'2016-12-23T10:17:20.803' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1608, N'JNCCSQL             ', N'Nita                                                                                                ', N'Jellygleam                                                                                          ', 30, 6, 0, CAST(N'2016-12-23T10:17:21.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1609, N'ESJEXPF             ', N'Schmid                                                                                              ', N'Elsdon                                                                                              ', 10, 7, 0, CAST(N'2016-12-23T10:17:21.223' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1610, N'RVIMLWR             ', N'Venom                                                                                               ', N'Runabout                                                                                            ', 41, 8, 0, CAST(N'2016-12-23T10:17:21.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1611, N'DPTADJX             ', N'Proudfoot                                                                                           ', N'Dazzledust                                                                                          ', 4, 8, 0, CAST(N'2016-12-23T10:17:21.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1612, N'LRQTDLH             ', N'Rock                                                                                                ', N'Lalia                                                                                               ', 19, 2, 0, CAST(N'2016-12-23T10:17:21.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1613, N'HCLHACI             ', N'Chubb-Baggins                                                                                       ', N'Henna                                                                                               ', 36, 5, 0, CAST(N'2016-12-23T10:17:22.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1614, N'TSWDEEI             ', N'Sugarkiss                                                                                           ', N'Tiia                                                                                                ', 13, 3, 0, CAST(N'2016-12-23T10:17:22.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1615, N'MSCQYAP             ', N'Sludge                                                                                              ', N'Marika                                                                                              ', 42, 5, 0, CAST(N'2016-12-23T10:17:22.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1616, N'RFFXRAK             ', N'Fraser                                                                                              ', N'Rowan                                                                                               ', 5, 4, 0, CAST(N'2016-12-23T10:17:22.713' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1617, N'BFGXXUN             ', N'Fantine                                                                                             ', N'Blair                                                                                               ', 39, 5, 0, CAST(N'2016-12-23T10:17:22.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1618, N'RBXDDDM             ', N'Bolger                                                                                              ', N'Rhoda                                                                                               ', 33, 8, 0, CAST(N'2016-12-23T10:17:23.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1619, N'TSSGQGK             ', N'Snowfeather                                                                                         ', N'Titania                                                                                             ', 16, 3, 0, CAST(N'2016-12-23T10:17:23.367' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1620, N'ARWIYNI             ', N'Ra                                                                                                  ', N'Atomic                                                                                              ', 2, 8, 0, CAST(N'2016-12-23T10:17:23.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1621, N'RQCYJWP             ', N'Quickberry                                                                                          ', N'Robert                                                                                              ', 71, 4, 0, CAST(N'2016-12-23T10:17:23.797' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1622, N'DMPCAOH             ', N'Meissner                                                                                            ', N'Dirk                                                                                                ', 17, 1, 0, CAST(N'2016-12-23T10:17:24.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1623, N'VIOCLEE             ', N'Iomhar                                                                                              ', N'Viktoria                                                                                            ', 40, 5, 0, CAST(N'2016-12-23T10:17:24.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1624, N'RSTAEMJ             ', N'Starbeam                                                                                            ', N'Riina                                                                                               ', 11, 7, 0, CAST(N'2016-12-23T10:17:24.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1625, N'SMFDGBD             ', N'McRae                                                                                               ', N'Spud                                                                                                ', 20, 7, 0, CAST(N'2016-12-23T10:17:24.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1626, N'COJMFPX             ', N'Optimus                                                                                             ', N'Crush                                                                                               ', 28, 1, 0, CAST(N'2016-12-23T10:17:24.883' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1627, N'EKGLAQI             ', N'Keith                                                                                               ', N'Elsdon                                                                                              ', 14, 5, 0, CAST(N'2016-12-23T10:17:25.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1628, N'AGEUAMI             ', N'Gentlemoon                                                                                          ', N'Applebreeze                                                                                         ', 8, 4, 0, CAST(N'2016-12-23T10:17:25.307' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1629, N'LFBTJYU             ', N'Fraser                                                                                              ', N'Loyd                                                                                                ', 29, 2, 0, CAST(N'2016-12-23T10:17:30.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1630, N'CTOHGQL             ', N'Topanga                                                                                             ', N'Crippler                                                                                            ', 9, 5, 0, CAST(N'2016-12-23T10:17:30.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1631, N'SJOTBFA             ', N'Julitta                                                                                             ', N'Snowdance                                                                                           ', 15, 2, 0, CAST(N'2016-12-23T10:17:30.753' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1632, N'RLFPPAQ             ', N'Larivaara                                                                                           ', N'Ruairidh                                                                                            ', 3, 7, 0, CAST(N'2016-12-23T10:17:30.963' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1633, N'DMRUDXR             ', N'Marcas                                                                                              ', N'Diamond                                                                                             ', 52, 2, 0, CAST(N'2016-12-23T10:17:31.190' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1634, N'SRJANDX             ', N'Ra                                                                                                  ', N'Sleek                                                                                               ', 12, 3, 0, CAST(N'2016-12-23T10:17:31.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1635, N'BKAWXNN             ', N'Kaisa                                                                                               ', N'Bertram                                                                                             ', 35, 8, 0, CAST(N'2016-12-23T10:17:31.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1636, N'CIANCYR             ', N'Itzel                                                                                               ', N'Corona                                                                                              ', 6, 6, 0, CAST(N'2016-12-23T10:17:31.827' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1637, N'LGISVAM             ', N'Gently                                                                                              ', N'Loyd                                                                                                ', 21, 2, 0, CAST(N'2016-12-23T10:17:32.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1638, N'SKCIWTN             ', N'Kreka                                                                                               ', N'Snowdance                                                                                           ', 58, 7, 0, CAST(N'2016-12-23T10:17:32.253' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1639, N'MSOQKBS             ', N'Smith                                                                                               ', N'Mirjam                                                                                              ', 64, 7, 0, CAST(N'2016-12-23T10:17:32.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1640, N'FGPOPDG             ', N'Griffin                                                                                             ', N'Fergus                                                                                              ', 38, 3, 0, CAST(N'2016-12-23T10:17:32.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1641, N'PZJVDDP             ', N'Zaragamba                                                                                           ', N'Pansy                                                                                               ', 7, 5, 0, CAST(N'2016-12-23T10:17:32.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1642, N'TGWUBRT             ', N'Glittersheen                                                                                        ', N'Terje                                                                                               ', 70, 2, 0, CAST(N'2016-12-23T10:17:33.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1643, N'AVQGNBV             ', N'Vorath                                                                                              ', N'Alodia                                                                                              ', 18, 7, 0, CAST(N'2016-12-23T10:17:33.323' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1644, N'CSHSYOA             ', N'Sugarfeather                                                                                        ', N'Crippler                                                                                            ', 30, 7, 0, CAST(N'2016-12-23T10:17:33.533' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1645, N'GMBDOCN             ', N'Moongaze                                                                                            ', N'Goldstar                                                                                            ', 10, 4, 0, CAST(N'2016-12-23T10:17:33.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1646, N'DZOXFQI             ', N'Zaragamba                                                                                           ', N'Dina                                                                                                ', 41, 1, 0, CAST(N'2016-12-23T10:17:33.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1647, N'ABCXWUE             ', N'Brandagamba                                                                                         ', N'Arlen                                                                                               ', 4, 2, 0, CAST(N'2016-12-23T10:17:34.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1648, N'SSUFNIF             ', N'Sandheaver                                                                                          ', N'Snowdance                                                                                           ', 19, 5, 0, CAST(N'2016-12-23T10:17:34.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1649, N'SMFPWUW             ', N'Moongaze                                                                                            ', N'Silverfrost                                                                                         ', 36, 3, 0, CAST(N'2016-12-23T10:17:34.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1650, N'HLNIEXJ             ', N'Lightfoot                                                                                           ', N'Highbrow                                                                                            ', 13, 1, 0, CAST(N'2016-12-23T10:17:34.857' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1651, N'HJNBFXC             ', N'Julitta                                                                                             ', N'Harmony                                                                                             ', 42, 4, 0, CAST(N'2016-12-23T10:17:35.067' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1652, N'RPJVNUQ             ', N'Paasivirta                                                                                          ', N'Rowan                                                                                               ', 5, 4, 0, CAST(N'2016-12-23T10:17:35.287' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1653, N'CKPNHSJ             ', N'Kiiskinen                                                                                           ', N'Ceallagh                                                                                            ', 39, 4, 0, CAST(N'2016-12-23T10:17:35.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1654, N'MMGYNEX             ', N'Meissner                                                                                            ', N'Mirjam                                                                                              ', 33, 2, 0, CAST(N'2016-12-23T10:17:35.727' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1655, N'GIXPVJN             ', N'Iomhar                                                                                              ', N'Gerda                                                                                               ', 16, 6, 0, CAST(N'2016-12-23T10:17:35.937' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1656, N'HHBFUCS             ', N'Headstrong                                                                                          ', N'Haidee                                                                                              ', 2, 8, 0, CAST(N'2016-12-23T10:17:36.157' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1657, N'SIJUXJO             ', N'Itzel                                                                                               ', N'Silverfrost                                                                                         ', 71, 4, 0, CAST(N'2016-12-23T10:17:36.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1658, N'AGBCIJV             ', N'Gentlemoon                                                                                          ', N'Almira                                                                                              ', 17, 1, 0, CAST(N'2016-12-23T10:17:36.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1659, N'DNQQHAB             ', N'Nita                                                                                                ', N'Daisy                                                                                               ', 40, 1, 0, CAST(N'2016-12-23T10:17:36.797' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1660, N'DWKXKBE             ', N'Whitfoot                                                                                            ', N'Double                                                                                              ', 11, 2, 0, CAST(N'2016-12-23T10:17:37.023' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1661, N'GAILLUV             ', N'Andersen                                                                                            ', N'Gigglering                                                                                          ', 20, 8, 0, CAST(N'2016-12-23T10:17:37.233' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1662, N'SSGUGVA             ', N'Spacespirit                                                                                         ', N'Sleek                                                                                               ', 28, 6, 0, CAST(N'2016-12-23T10:17:37.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1663, N'DSGXXXC             ', N'Starbeam                                                                                            ', N'Daisy                                                                                               ', 14, 1, 0, CAST(N'2016-12-23T10:17:37.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1664, N'SSIFDCI             ', N'Spacespirit                                                                                         ', N'Scourge                                                                                             ', 8, 2, 0, CAST(N'2016-12-23T10:17:37.893' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1665, N'RHAICKM             ', N'Hawking                                                                                             ', N'Rein                                                                                                ', 29, 8, 0, CAST(N'2016-12-23T10:17:56.893' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1666, N'SJREPJJ             ', N'Junge                                                                                               ', N'Sofia                                                                                               ', 9, 2, 0, CAST(N'2016-12-23T10:17:57.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1667, N'MJOEUDK             ', N'Julitta                                                                                             ', N'Mira                                                                                                ', 15, 4, 0, CAST(N'2016-12-23T10:17:57.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1668, N'UTWFUCF             ', N'T k                                                                                                 ', N'Ultra                                                                                               ', 3, 3, 0, CAST(N'2016-12-23T10:17:57.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1669, N'CFSOEVJ             ', N'Flutternose                                                                                         ', N'Cyra                                                                                                ', 52, 7, 0, CAST(N'2016-12-23T10:17:57.743' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1670, N'QKNBOKM             ', N'Kaisa                                                                                               ', N'Queen                                                                                               ', 12, 7, 0, CAST(N'2016-12-23T10:17:57.963' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1671, N'MSNOHSH             ', N'Sherman                                                                                             ', N'Melissa                                                                                             ', 35, 4, 0, CAST(N'2016-12-23T10:17:58.173' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1672, N'MSOKMCQ             ', N'Sherman                                                                                             ', N'Mooncheeks                                                                                          ', 6, 1, 0, CAST(N'2016-12-23T10:17:58.387' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1673, N'MVLXLRI             ', N'Viktoria                                                                                            ', N'Myrtle                                                                                              ', 21, 7, 0, CAST(N'2016-12-23T10:17:58.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1674, N'UTURJHW             ', N'T hirih                                                                                             ', N'Ultra                                                                                               ', 58, 2, 0, CAST(N'2016-12-23T10:17:58.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1675, N'SCMMFWA             ', N'Chubb                                                                                               ', N'Silverfrost                                                                                         ', 64, 1, 0, CAST(N'2016-12-23T10:17:59.017' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1676, N'GQWOFKN             ', N'Quickleaf                                                                                           ', N'Gigglering                                                                                          ', 38, 5, 0, CAST(N'2016-12-23T10:17:59.237' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1677, N'MFUXWVF             ', N'Flutternose                                                                                         ', N'Maimu                                                                                               ', 7, 8, 0, CAST(N'2016-12-23T10:17:59.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1678, N'PSTNIWC             ', N'Snowfeather                                                                                         ', N'Potatosower                                                                                         ', 70, 8, 0, CAST(N'2016-12-23T10:17:59.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1679, N'KPGEPCK             ', N'Prowl                                                                                               ', N'Kerr                                                                                                ', 18, 2, 0, CAST(N'2016-12-23T10:17:59.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1680, N'ABBQBDB             ', N'Blitzwing                                                                                           ', N'Arabella                                                                                            ', 30, 5, 0, CAST(N'2016-12-23T10:18:00.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1681, N'PKBJHHR             ', N'Koenig                                                                                              ', N'Pollyanna                                                                                           ', 10, 3, 0, CAST(N'2016-12-23T10:18:00.323' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1682, N'HLXMWDF             ', N'Leelo                                                                                               ', N'Highbrow                                                                                            ', 41, 6, 0, CAST(N'2016-12-23T10:18:00.533' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1683, N'DGJCLWK             ', N'Gamgee                                                                                              ', N'Dirk                                                                                                ', 4, 1, 0, CAST(N'2016-12-23T10:18:00.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1684, N'CKJIWNE             ', N'Keith                                                                                               ', N'Corona                                                                                              ', 19, 7, 0, CAST(N'2016-12-23T10:18:00.953' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1685, N'HSYEQEJ             ', N'Simpkin                                                                                             ', N'Highbrow                                                                                            ', 36, 5, 0, CAST(N'2016-12-23T10:18:01.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1686, N'DFFTXRT             ', N'Force                                                                                               ', N'Daisy                                                                                               ', 13, 8, 0, CAST(N'2016-12-23T10:18:01.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1687, N'QMXYLSF             ', N'Marika                                                                                              ', N'Queen                                                                                               ', 42, 5, 0, CAST(N'2016-12-23T10:18:01.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1688, N'PKTAJIY             ', N'Kateri                                                                                              ', N'Pollyanna                                                                                           ', 5, 2, 0, CAST(N'2016-12-23T10:18:02.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1689, N'PLIMILI             ', N'Larivaara                                                                                           ', N'Pounce                                                                                              ', 39, 5, 0, CAST(N'2016-12-23T10:18:02.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1690, N'CRXLKTD             ', N'Rippersnapper                                                                                       ', N'Chickenfarmer                                                                                       ', 33, 1, 0, CAST(N'2016-12-23T10:18:02.547' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1691, N'SCXKYNP             ', N'Cringleberry                                                                                        ', N'Savanna                                                                                             ', 16, 2, 0, CAST(N'2016-12-23T10:18:02.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1692, N'ARMPWBG             ', N'Ranald                                                                                              ', N'Aleksandra                                                                                          ', 2, 4, 0, CAST(N'2016-12-23T10:18:02.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1693, N'HKFKPRJ             ', N'Kaisa                                                                                               ', N'Herbie                                                                                              ', 71, 3, 0, CAST(N'2016-12-23T10:18:03.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1694, N'AGMNISW             ', N'Gamgee                                                                                              ', N'Aleksandra                                                                                          ', 17, 8, 0, CAST(N'2016-12-23T10:18:03.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1695, N'TDFTMET             ', N'Donohoe                                                                                             ', N'Trey                                                                                                ', 40, 3, 0, CAST(N'2016-12-23T10:18:03.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1696, N'TSIRMIN             ', N'Spacespirit                                                                                         ', N'Titania                                                                                             ', 11, 5, 0, CAST(N'2016-12-23T10:18:03.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1697, N'PRPTJSB             ', N'Roxelana                                                                                            ', N'Powerglide                                                                                          ', 20, 8, 0, CAST(N'2016-12-23T10:18:04.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1698, N'BKVWFGK             ', N'Kateri                                                                                              ', N'Bertram                                                                                             ', 28, 4, 0, CAST(N'2016-12-23T10:18:04.257' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1699, N'CARGBLQ             ', N'Allsopp                                                                                             ', N'Crush                                                                                               ', 14, 7, 0, CAST(N'2016-12-23T10:18:04.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1700, N'GKDFPLM             ', N'Kreka                                                                                               ', N'Grimalda                                                                                            ', 8, 4, 0, CAST(N'2016-12-23T10:18:04.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1701, N'MLJHHLR             ', N'Lashawnda                                                                                           ', N'Mari                                                                                                ', 29, 7, 0, CAST(N'2016-12-23T10:18:25.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1702, N'DSRCPNT             ', N'Smith                                                                                               ', N'Double                                                                                              ', 9, 1, 0, CAST(N'2016-12-23T10:18:25.300' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1703, N'HWJJKGR             ', N'Woods                                                                                               ', N'Herbie                                                                                              ', 15, 3, 0, CAST(N'2016-12-23T10:18:25.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1704, N'QKPQDWW             ', N'Koenig                                                                                              ', N'Queen                                                                                               ', 3, 7, 0, CAST(N'2016-12-23T10:18:25.693' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1705, N'MGFIUVQ             ', N'Goold                                                                                               ', N'Mooncheeks                                                                                          ', 52, 2, 0, CAST(N'2016-12-23T10:18:25.903' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1706, N'GKYTRHI             ', N'Kiiskinen                                                                                           ', N'Grapple                                                                                             ', 12, 8, 0, CAST(N'2016-12-23T10:18:26.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1707, N'DJSSTAD             ', N'Julitta                                                                                             ', N'Daniel                                                                                              ', 35, 1, 0, CAST(N'2016-12-23T10:18:26.337' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1708, N'HITLGXV             ', N'Ibbott                                                                                              ', N'Hannah                                                                                              ', 6, 1, 0, CAST(N'2016-12-23T10:18:26.557' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1709, N'KQCWFUE             ', N'Quickmoon                                                                                           ', N'Kerr                                                                                                ', 21, 7, 0, CAST(N'2016-12-23T10:18:26.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1710, N'LGWGTJG             ', N'Goldworthy                                                                                          ', N'Lalia                                                                                               ', 58, 4, 0, CAST(N'2016-12-23T10:18:26.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1711, N'HSHMPEB             ', N'Sigrid                                                                                              ', N'Hingle                                                                                              ', 64, 5, 0, CAST(N'2016-12-23T10:18:27.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1712, N'HWJGLGG             ', N'Wheeljack                                                                                           ', N'Hingle                                                                                              ', 38, 7, 0, CAST(N'2016-12-23T10:18:27.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1713, N'GFBBFRD             ', N'Fantine                                                                                             ', N'Gerda                                                                                               ', 7, 4, 0, CAST(N'2016-12-23T10:18:27.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1714, N'JBMUVYF             ', N'Biceps                                                                                              ', N'Jessamine                                                                                           ', 70, 5, 0, CAST(N'2016-12-23T10:18:27.823' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1715, N'KIHEKFN             ', N'Itzel                                                                                               ', N'Kim                                                                                                 ', 18, 5, 0, CAST(N'2016-12-23T10:18:28.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1716, N'SJXOWJO             ', N'Jacobson                                                                                            ', N'Snowdance                                                                                           ', 30, 2, 0, CAST(N'2016-12-23T10:18:28.267' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1717, N'DMUPCBU             ', N'Maoilios                                                                                            ', N'Donnamira                                                                                           ', 10, 5, 0, CAST(N'2016-12-23T10:18:28.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1718, N'FIOLFFA             ', N'Itzel                                                                                               ', N'Flitterstar                                                                                         ', 41, 7, 0, CAST(N'2016-12-23T10:18:28.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1719, N'RTREUGL             ', N'Twinkleeyes                                                                                         ', N'Rowan                                                                                               ', 4, 8, 0, CAST(N'2016-12-23T10:18:28.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1720, N'FCIIAEV             ', N'Chubb-Baggins                                                                                       ', N'Flitterstar                                                                                         ', 19, 6, 0, CAST(N'2016-12-23T10:18:29.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1721, N'MLFHLKU             ', N'Longhole                                                                                            ', N'Morgen                                                                                              ', 36, 4, 0, CAST(N'2016-12-23T10:18:29.343' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1722, N'CUNGSNV             ', N'Ulalume                                                                                             ', N'Clearkiss                                                                                           ', 13, 5, 0, CAST(N'2016-12-23T10:18:29.557' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1723, N'AJRXBBH             ', N'J rvinen                                                                                            ', N'Annukka                                                                                             ', 42, 2, 0, CAST(N'2016-12-23T10:18:29.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1724, N'PHITHOF             ', N'Hofmann                                                                                             ', N'Phoenix                                                                                             ', 5, 3, 0, CAST(N'2016-12-23T10:18:29.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1725, N'HGAPEDR             ', N'Golddust                                                                                            ', N'Hannah                                                                                              ', 39, 4, 0, CAST(N'2016-12-23T10:18:30.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1726, N'KAIGWHT             ', N'Ally                                                                                                ', N'Kerr                                                                                                ', 33, 5, 0, CAST(N'2016-12-23T10:18:30.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1727, N'WBDOYHI             ', N'Biceps                                                                                              ', N'Wingspan                                                                                            ', 16, 1, 0, CAST(N'2016-12-23T10:18:30.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1728, N'PDGMVKI             ', N'Donnchadh                                                                                           ', N'Perceptor                                                                                           ', 2, 5, 0, CAST(N'2016-12-23T10:18:30.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1729, N'SJPFQYR             ', N'Julitta                                                                                             ', N'Snowdance                                                                                           ', 71, 1, 0, CAST(N'2016-12-23T10:18:31.067' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1730, N'FCYADIG             ', N'Chubb-Baggins                                                                                       ', N'Flitterstar                                                                                         ', 17, 8, 0, CAST(N'2016-12-23T10:18:31.283' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1731, N'OSTEJAF             ', N'Schmid                                                                                              ', N'Octane                                                                                              ', 40, 7, 0, CAST(N'2016-12-23T10:18:31.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1732, N'TGISMVT             ', N'Griffin                                                                                             ', N'Twinkleleaf                                                                                         ', 11, 8, 0, CAST(N'2016-12-23T10:18:31.727' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1733, N'RSOLTRO             ', N'Sludge                                                                                              ', N'Rowan                                                                                               ', 20, 2, 0, CAST(N'2016-12-23T10:18:31.933' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1734, N'SQNXQQP             ', N'Quickleaf                                                                                           ', N'Snowdance                                                                                           ', 28, 4, 0, CAST(N'2016-12-23T10:18:32.147' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1735, N'JJRXNGQ             ', N'J rvinen                                                                                            ', N'Johanna                                                                                             ', 14, 2, 0, CAST(N'2016-12-23T10:18:32.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1736, N'RZYASON             ', N'Zuleika                                                                                             ', N'Runabout                                                                                            ', 8, 3, 0, CAST(N'2016-12-23T10:18:32.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1737, N'TMKHMFR             ', N'McGently                                                                                            ', N'Tiia                                                                                                ', 29, 5, 0, CAST(N'2016-12-23T10:18:46.333' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1738, N'AGSBQOY             ', N'Goold                                                                                               ', N'Ayelen                                                                                              ', 9, 4, 0, CAST(N'2016-12-23T10:18:46.553' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1739, N'PGRHCQL             ', N'Gently                                                                                              ', N'Prisca                                                                                              ', 15, 7, 0, CAST(N'2016-12-23T10:18:46.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1740, N'DSSHJKA             ', N'Saunders                                                                                            ', N'Daisy                                                                                               ', 3, 8, 0, CAST(N'2016-12-23T10:18:47.017' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1741, N'ZDKCOIL             ', N'Donohoe                                                                                             ', N'Zyanya                                                                                              ', 52, 4, 0, CAST(N'2016-12-23T10:18:47.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1742, N'ACAYITC             ', N'Cringleberry                                                                                        ', N'Arnie                                                                                               ', 12, 2, 0, CAST(N'2016-12-23T10:18:47.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1743, N'AGALMDF             ', N'Grubb                                                                                               ', N'Anni                                                                                                ', 35, 4, 0, CAST(N'2016-12-23T10:18:47.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1744, N'PHVKPJJ             ', N'Hawking                                                                                             ', N'Pigplanter                                                                                          ', 6, 5, 0, CAST(N'2016-12-23T10:18:47.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1745, N'HGUKBKD             ', N'Goold                                                                                               ', N'Hingle                                                                                              ', 21, 7, 0, CAST(N'2016-12-23T10:18:48.127' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1746, N'RBRUWJC             ', N'Bolger-Baggins                                                                                      ', N'Riina                                                                                               ', 58, 8, 0, CAST(N'2016-12-23T10:18:48.343' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1747, N'SWUTMTW             ', N'Warrick                                                                                             ', N'Silverfrost                                                                                         ', 64, 5, 0, CAST(N'2016-12-23T10:18:48.573' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1748, N'MGKKOTB             ', N'Gentlemoon                                                                                          ', N'Melissa                                                                                             ', 38, 6, 0, CAST(N'2016-12-23T10:18:48.793' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1749, N'KDMBWRK             ', N'Dazzlegaze                                                                                          ', N'Kim                                                                                                 ', 7, 1, 0, CAST(N'2016-12-23T10:18:49.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1750, N'GJAGQFD             ', N'Jacobson                                                                                            ', N'Grapple                                                                                             ', 70, 1, 0, CAST(N'2016-12-23T10:18:49.237' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1751, N'LSKYFVL             ', N'Starbeam                                                                                            ', N'Lightspeed                                                                                          ', 18, 3, 0, CAST(N'2016-12-23T10:18:49.457' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1752, N'SFONLQM             ', N'Flutternose                                                                                         ', N'Scotty                                                                                              ', 30, 6, 0, CAST(N'2016-12-23T10:18:49.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1753, N'DLCBRYM             ', N'Larivaara                                                                                           ', N'Dirk                                                                                                ', 10, 2, 0, CAST(N'2016-12-23T10:18:49.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1754, N'HBSCNLA             ', N'Bunce                                                                                               ', N'Haidee                                                                                              ', 41, 5, 0, CAST(N'2016-12-23T10:18:50.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1755, N'PAUIXUU             ', N'Alberts                                                                                             ', N'Phoenix                                                                                             ', 4, 4, 0, CAST(N'2016-12-23T10:18:50.323' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1756, N'ABECWQK             ', N'Blake                                                                                               ', N'Amanda                                                                                              ', 19, 3, 0, CAST(N'2016-12-23T10:18:50.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1757, N'CSMVNIS             ', N'Sideswipe                                                                                           ', N'Chickenchaser                                                                                       ', 36, 4, 0, CAST(N'2016-12-23T10:18:50.763' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1758, N'FFVVNFA             ', N'Fairbairn                                                                                           ', N'Forest                                                                                              ', 13, 7, 0, CAST(N'2016-12-23T10:18:50.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1759, N'TSJTPFU             ', N'Sherman                                                                                             ', N'Tiia                                                                                                ', 42, 6, 0, CAST(N'2016-12-23T10:18:51.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1760, N'ACGPRYP             ', N'Calfuray                                                                                            ', N'Anna                                                                                                ', 5, 8, 0, CAST(N'2016-12-23T10:18:51.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1761, N'KJKTJSN             ', N'Julitta                                                                                             ', N'Katariina                                                                                           ', 39, 3, 0, CAST(N'2016-12-23T10:18:51.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1762, N'SSFKBIW             ', N'Siiri                                                                                               ', N'Sacnite                                                                                             ', 33, 6, 0, CAST(N'2016-12-23T10:18:51.853' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1763, N'NMGEXYS             ', N'McKenzie                                                                                            ', N'Nydia                                                                                               ', 16, 2, 0, CAST(N'2016-12-23T10:18:52.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1764, N'AAXMSTP             ', N'Allsopp                                                                                             ', N'Ailpein                                                                                             ', 2, 5, 0, CAST(N'2016-12-23T10:18:52.287' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1765, N'MTCMEKL             ', N'Twinkleeyes                                                                                         ', N'May                                                                                                 ', 71, 7, 0, CAST(N'2016-12-23T10:18:52.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1766, N'HLRMDAC             ', N'Lothran                                                                                             ', N'Haidee                                                                                              ', 17, 2, 0, CAST(N'2016-12-23T10:18:52.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1767, N'UVEYBOR             ', N'Venom                                                                                               ', N'Ultra                                                                                               ', 40, 6, 0, CAST(N'2016-12-23T10:18:52.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1768, N'PBIIQYA             ', N'Blitzwing                                                                                           ', N'Powerglide                                                                                          ', 11, 6, 0, CAST(N'2016-12-23T10:18:53.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1769, N'STQULSJ             ', N'T k                                                                                                 ', N'Sweetstar                                                                                           ', 20, 4, 0, CAST(N'2016-12-23T10:18:53.373' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1770, N'HCSYVJI             ', N'Cyra                                                                                                ', N'Hannah                                                                                              ', 28, 1, 0, CAST(N'2016-12-23T10:18:53.600' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1771, N'JLDGPTM             ', N'Levy                                                                                                ', N'Johanna                                                                                             ', 14, 3, 0, CAST(N'2016-12-23T10:18:53.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1772, N'RZGIWCP             ', N'Zuleika                                                                                             ', N'Rein                                                                                                ', 8, 3, 0, CAST(N'2016-12-23T10:18:54.033' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1773, N'WADHHYX             ', N'Age                                                                                                 ', N'Wingspan                                                                                            ', 29, 7, 0, CAST(N'2016-12-23T10:19:10.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1774, N'NMHBFBU             ', N'McNaughton                                                                                          ', N'Nina                                                                                                ', 9, 3, 0, CAST(N'2016-12-23T10:19:10.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1775, N'CMBLWCC             ', N'Mirjam                                                                                              ', N'C emgein                                                                                            ', 15, 1, 0, CAST(N'2016-12-23T10:19:10.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1776, N'BSRKCPD             ', N'Saunders                                                                                            ', N'Bertram                                                                                             ', 3, 1, 0, CAST(N'2016-12-23T10:19:10.753' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1777, N'SAIQSSQ             ', N'Albert                                                                                              ', N'Scourge                                                                                             ', 52, 7, 0, CAST(N'2016-12-23T10:19:10.963' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1778, N'PPWHBAO             ', N'Paasivirta                                                                                          ', N'Prisca                                                                                              ', 12, 6, 0, CAST(N'2016-12-23T10:19:11.173' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1779, N'PHIUCJN             ', N'Hagstr m                                                                                            ', N'Pigplanter                                                                                          ', 35, 8, 0, CAST(N'2016-12-23T10:19:11.387' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1780, N'KMCILFF             ', N'McSpuddy                                                                                            ', N'Kerr                                                                                                ', 6, 4, 0, CAST(N'2016-12-23T10:19:11.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1781, N'ASPPXYG             ', N'Sureshot                                                                                            ', N'Alasdair                                                                                            ', 21, 4, 0, CAST(N'2016-12-23T10:19:11.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1782, N'DROBKVQ             ', N'Rock                                                                                                ', N'Daniel                                                                                              ', 58, 5, 0, CAST(N'2016-12-23T10:19:11.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1783, N'ARTWYKS             ', N'Ra                                                                                                  ', N'Almira                                                                                              ', 64, 5, 0, CAST(N'2016-12-23T10:19:12.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1784, N'HSYGTOE             ', N'Stone                                                                                               ', N'Henna                                                                                               ', 38, 6, 0, CAST(N'2016-12-23T10:19:12.420' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1785, N'AGMWNLE             ', N'Graves                                                                                              ', N'Arden                                                                                               ', 7, 1, 0, CAST(N'2016-12-23T10:19:12.640' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1786, N'MPUIYPN             ', N'Peacespirit                                                                                         ', N'Mirjam                                                                                              ', 70, 6, 0, CAST(N'2016-12-23T10:19:12.857' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1787, N'SUNNHVL             ', N'Ulalume                                                                                             ', N'Shaw                                                                                                ', 18, 3, 0, CAST(N'2016-12-23T10:19:13.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1788, N'HGRLGBH             ', N'Goold                                                                                               ', N'Henna                                                                                               ', 30, 7, 0, CAST(N'2016-12-23T10:19:13.273' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1789, N'TUOGHCJ             ', N'Ulalume                                                                                             ', N'Twinkleleaf                                                                                         ', 10, 5, 0, CAST(N'2016-12-23T10:19:13.487' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1790, N'JFAIVKO             ', N'Flutternose                                                                                         ', N'Jochim                                                                                              ', 41, 8, 0, CAST(N'2016-12-23T10:19:13.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1791, N'HPVTDXO             ', N'Potatochaser                                                                                        ', N'Harmony                                                                                             ', 4, 1, 0, CAST(N'2016-12-23T10:19:13.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1792, N'ARQJEHN             ', N'Roxelana                                                                                            ', N'Aloysius                                                                                            ', 19, 1, 0, CAST(N'2016-12-23T10:19:14.143' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1793, N'WGUBCTF             ', N'Golddust                                                                                            ', N'Wingspan                                                                                            ', 36, 8, 0, CAST(N'2016-12-23T10:19:14.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1794, N'RFIFQLJ             ', N'Flutternose                                                                                         ', N'Riina                                                                                               ', 13, 8, 0, CAST(N'2016-12-23T10:19:14.573' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1795, N'HNBMIUJ             ', N'Nye                                                                                                 ', N'Highbrow                                                                                            ', 42, 1, 0, CAST(N'2016-12-23T10:19:14.793' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1796, N'FOGQKFE             ', N'Optimus                                                                                             ', N'Forest                                                                                              ', 5, 7, 0, CAST(N'2016-12-23T10:19:15.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1797, N'GMQSGLA             ', N'Mirjam                                                                                              ', N'Gobnata                                                                                             ', 39, 4, 0, CAST(N'2016-12-23T10:19:15.227' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1798, N'BKQAOCJ             ', N'Kristiina                                                                                           ', N'Barleyfarmer                                                                                        ', 33, 3, 0, CAST(N'2016-12-23T10:19:15.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1799, N'PSCBIGN             ', N'Sideswipe                                                                                           ', N'Perceptor                                                                                           ', 16, 2, 0, CAST(N'2016-12-23T10:19:15.660' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1800, N'DBNEDOB             ', N'Blitzwing                                                                                           ', N'Dirk                                                                                                ', 2, 4, 0, CAST(N'2016-12-23T10:19:15.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1801, N'DMXJEBS             ', N'McGently                                                                                            ', N'Devastator                                                                                          ', 71, 6, 0, CAST(N'2016-12-23T10:19:16.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1802, N'ASVDKWP             ', N'Saraste                                                                                             ', N'Aleksander                                                                                          ', 17, 5, 0, CAST(N'2016-12-23T10:19:16.303' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1803, N'SSIPHKK             ', N'Starscream                                                                                          ', N'Silverfrost                                                                                         ', 40, 4, 0, CAST(N'2016-12-23T10:19:16.513' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1804, N'ACBBTLM             ', N'Calfuray                                                                                            ', N'Assassin                                                                                            ', 11, 6, 0, CAST(N'2016-12-23T10:19:16.727' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1805, N'HSXOMOK             ', N'Sandheaver                                                                                          ', N'Highbrow                                                                                            ', 20, 4, 0, CAST(N'2016-12-23T10:19:16.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1806, N'PSDWNPL             ', N'Snowfeather                                                                                         ', N'Pigplanter                                                                                          ', 28, 3, 0, CAST(N'2016-12-23T10:19:17.173' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1807, N'HSDVOPT             ', N'Sureshot                                                                                            ', N'Hingle                                                                                              ', 14, 7, 0, CAST(N'2016-12-23T10:19:17.383' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1808, N'MLRYWTI             ', N'Lothran                                                                                             ', N'Mimosa                                                                                              ', 8, 7, 0, CAST(N'2016-12-23T10:19:17.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1809, N'TSYUOKF             ', N'Sherman                                                                                             ', N'Tasgall                                                                                             ', 29, 1, 0, CAST(N'2016-12-23T10:19:35.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1810, N'SBMIOHR             ', N'Bunce                                                                                               ', N'Savanna                                                                                             ', 9, 1, 0, CAST(N'2016-12-23T10:19:35.227' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1811, N'VSIFDFL             ', N'Sandheaver                                                                                          ', N'Viktoria                                                                                            ', 15, 6, 0, CAST(N'2016-12-23T10:19:35.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1812, N'CNDTSBR             ', N'Nevin                                                                                               ', N'Carbry                                                                                              ', 3, 3, 0, CAST(N'2016-12-23T10:19:35.657' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1813, N'TSKLIEH             ', N'Snowfeather                                                                                         ', N'Twinkleberry                                                                                        ', 52, 4, 0, CAST(N'2016-12-23T10:19:35.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1814, N'DMTBYTR             ', N'Manninen                                                                                            ', N'Dirk                                                                                                ', 12, 7, 0, CAST(N'2016-12-23T10:19:36.077' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1815, N'TSWFARV             ', N'Starbeam                                                                                            ', N'Titania                                                                                             ', 35, 6, 0, CAST(N'2016-12-23T10:19:36.287' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1816, N'SMKDCOL             ', N'MacClelland                                                                                         ', N'Shaw                                                                                                ', 6, 7, 0, CAST(N'2016-12-23T10:19:36.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1817, N'MWTKTBG             ', N'Warrick                                                                                             ', N'Melissa                                                                                             ', 21, 1, 0, CAST(N'2016-12-23T10:19:36.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1818, N'RSOGMAO             ', N'Sandheaver                                                                                          ', N'Rhoda                                                                                               ', 58, 2, 0, CAST(N'2016-12-23T10:19:36.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1819, N'LKUJEJK             ', N'Kaja                                                                                                ', N'Loviise                                                                                             ', 64, 6, 0, CAST(N'2016-12-23T10:19:37.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1820, N'QMWRKYS             ', N'Manninen                                                                                            ', N'Queen                                                                                               ', 38, 4, 0, CAST(N'2016-12-23T10:19:37.373' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1821, N'RMVQERU             ', N'McBelle                                                                                             ', N'Rowan                                                                                               ', 7, 2, 0, CAST(N'2016-12-23T10:19:37.593' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1822, N'ASLHQHE             ', N'Sideswipe                                                                                           ', N'Arden                                                                                               ', 70, 4, 0, CAST(N'2016-12-23T10:19:37.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1823, N'PVDJQMA             ', N'Viktoria                                                                                            ', N'Pollyanna                                                                                           ', 18, 8, 0, CAST(N'2016-12-23T10:19:38.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1824, N'GNSKDMS             ', N'Nye                                                                                                 ', N'Goldshy                                                                                             ', 30, 2, 0, CAST(N'2016-12-23T10:19:38.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1825, N'FBAVKAJ             ', N'Breakdown                                                                                           ', N'Flitterstar                                                                                         ', 10, 5, 0, CAST(N'2016-12-23T10:19:38.457' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1826, N'SPGCJVQ             ', N'Pocahontas                                                                                          ', N'Scotty                                                                                              ', 41, 4, 0, CAST(N'2016-12-23T10:19:38.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1827, N'ALHCUXN             ', N'Lightfoot                                                                                           ', N'Ayelen                                                                                              ', 4, 1, 0, CAST(N'2016-12-23T10:19:38.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1828, N'KBFSUHO             ', N'Bunce                                                                                               ', N'Knut                                                                                                ', 19, 3, 0, CAST(N'2016-12-23T10:19:39.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1829, N'TMVRSXU             ', N'MacClelland                                                                                         ', N'Terje                                                                                               ', 36, 5, 0, CAST(N'2016-12-23T10:19:39.307' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1830, N'WSEMUPA             ', N'Sideswipe                                                                                           ', N'Wingspan                                                                                            ', 13, 8, 0, CAST(N'2016-12-23T10:19:39.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1831, N'SDLVPUC             ', N'Dulcinea                                                                                            ', N'Silvernose                                                                                          ', 42, 5, 0, CAST(N'2016-12-23T10:19:39.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1832, N'AFMIOGB             ', N'Force                                                                                               ', N'Alfred                                                                                              ', 5, 5, 0, CAST(N'2016-12-23T10:19:39.967' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1833, N'MHXVHGU             ', N'Headstrong                                                                                          ', N'Matilda                                                                                             ', 39, 6, 0, CAST(N'2016-12-23T10:19:40.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1834, N'JSGNERX             ', N'Siiri                                                                                               ', N'Jemmy                                                                                               ', 33, 8, 0, CAST(N'2016-12-23T10:19:40.393' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1835, N'DSIXYLT             ', N'Sureshot                                                                                            ', N'Daisy                                                                                               ', 16, 7, 0, CAST(N'2016-12-23T10:19:40.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1836, N'RMNDJNK             ', N'MacClelland                                                                                         ', N'Ruairidh                                                                                            ', 2, 5, 0, CAST(N'2016-12-23T10:19:40.827' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1837, N'HTOCUQD             ', N'T hirih                                                                                             ', N'Haidee                                                                                              ', 71, 8, 0, CAST(N'2016-12-23T10:19:41.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1838, N'DMNKATO             ', N'McKenzie                                                                                            ', N'Diamond                                                                                             ', 17, 1, 0, CAST(N'2016-12-23T10:19:41.267' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1839, N'DWVJPVC             ', N'Whitfoot                                                                                            ', N'Dina                                                                                                ', 40, 1, 0, CAST(N'2016-12-23T10:19:41.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1840, N'MRKRXNS             ', N'Roxelana                                                                                            ', N'Marika                                                                                              ', 11, 2, 0, CAST(N'2016-12-23T10:19:41.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1841, N'NKQBGLW             ', N'Kiiskinen                                                                                           ', N'Nydia                                                                                               ', 20, 1, 0, CAST(N'2016-12-23T10:19:41.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1842, N'CFSRVBM             ', N'Force                                                                                               ', N'Carbry                                                                                              ', 28, 2, 0, CAST(N'2016-12-23T10:19:42.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1843, N'RAUNOXQ             ', N'Anthonyson                                                                                          ', N'Rhoda                                                                                               ', 14, 7, 0, CAST(N'2016-12-23T10:19:42.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1844, N'SKVNOQG             ', N'Kateri                                                                                              ', N'Silvernose                                                                                          ', 8, 7, 0, CAST(N'2016-12-23T10:19:42.560' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1845, N'GBTNSKA             ', N'Bolger-Baggins                                                                                      ', N'Grimalda                                                                                            ', 29, 1, 0, CAST(N'2016-12-23T10:19:52.317' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1846, N'DLBMXFN             ', N'Larivaara                                                                                           ', N'Double                                                                                              ', 9, 1, 0, CAST(N'2016-12-23T10:19:52.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1847, N'DRIDOTL             ', N'Rock                                                                                                ', N'Double                                                                                              ', 15, 2, 0, CAST(N'2016-12-23T10:19:52.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1848, N'AGQSSUL             ', N'Gently                                                                                              ', N'Angelica                                                                                            ', 3, 4, 0, CAST(N'2016-12-23T10:19:52.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1849, N'HHUAULH             ', N'Hawking                                                                                             ', N'Hingle                                                                                              ', 52, 1, 0, CAST(N'2016-12-23T10:19:53.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1850, N'DQOREKF             ', N'Quickleaf                                                                                           ', N'Dirk                                                                                                ', 12, 6, 0, CAST(N'2016-12-23T10:19:53.417' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1851, N'LBACAGE             ', N'Bolger-Baggins                                                                                      ', N'Lavinia                                                                                             ', 35, 3, 0, CAST(N'2016-12-23T10:19:53.633' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1852, N'DAPGQNP             ', N'Alberts                                                                                             ', N'Dietfried                                                                                           ', 6, 3, 0, CAST(N'2016-12-23T10:19:53.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1853, N'RGAFIWF             ', N'Golddust                                                                                            ', N'Rein                                                                                                ', 21, 8, 0, CAST(N'2016-12-23T10:19:54.087' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1854, N'OSLKUWB             ', N'Sulin                                                                                               ', N'Octane                                                                                              ', 58, 6, 0, CAST(N'2016-12-23T10:19:54.300' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1855, N'SCHABLV             ', N'Chubb-Baggins                                                                                       ', N'Shaw                                                                                                ', 64, 3, 0, CAST(N'2016-12-23T10:19:54.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1856, N'KBIUNLV             ', N'Bolger-Baggins                                                                                      ', N'Katariina                                                                                           ', 38, 7, 0, CAST(N'2016-12-23T10:19:54.723' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1857, N'AESKMWR             ', N'Error                                                                                               ', N'Aloysius                                                                                            ', 7, 2, 0, CAST(N'2016-12-23T10:19:54.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1858, N'EZITVLD             ', N'Zaragamba                                                                                           ', N'Eugene                                                                                              ', 70, 1, 0, CAST(N'2016-12-23T10:19:55.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1859, N'PZVXMSL             ', N'Zaragamba                                                                                           ', N'Prisca                                                                                              ', 18, 5, 0, CAST(N'2016-12-23T10:19:55.363' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1860, N'HRXWMAG             ', N'Rippersnapper                                                                                       ', N'Haidee                                                                                              ', 30, 8, 0, CAST(N'2016-12-23T10:19:55.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1861, N'JSWHDVN             ', N'Siiri                                                                                               ', N'Jochim                                                                                              ', 10, 5, 0, CAST(N'2016-12-23T10:19:55.797' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1862, N'KSRWBCI             ', N'Saraste                                                                                             ', N'Kermit                                                                                              ', 41, 7, 0, CAST(N'2016-12-23T10:19:56.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1863, N'HSIBSFY             ', N'Simpkin                                                                                             ', N'Harmony                                                                                             ', 4, 4, 0, CAST(N'2016-12-23T10:19:56.223' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1864, N'MVMYCKB             ', N'Vorath                                                                                              ', N'Mira                                                                                                ', 19, 5, 0, CAST(N'2016-12-23T10:19:56.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1865, N'JLQUAEN             ', N'Lightfoot                                                                                           ', N'Johanna                                                                                             ', 36, 1, 0, CAST(N'2016-12-23T10:19:56.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1866, N'DRATRRH             ', N'Rock                                                                                                ', N'Double                                                                                              ', 13, 7, 0, CAST(N'2016-12-23T10:19:56.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1867, N'JDGDVBJ             ', N'Donohoe                                                                                             ', N'Jessamine                                                                                           ', 42, 6, 0, CAST(N'2016-12-23T10:19:57.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1868, N'MMAGNMK             ', N'McSpuddy                                                                                            ', N'Marika                                                                                              ', 5, 4, 0, CAST(N'2016-12-23T10:19:57.287' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1869, N'SBOWDTG             ', N'Brown                                                                                               ', N'Shaw                                                                                                ', 39, 6, 0, CAST(N'2016-12-23T10:19:57.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1870, N'CBYWSBR             ', N'Badcock                                                                                             ', N'Crush                                                                                               ', 33, 5, 0, CAST(N'2016-12-23T10:19:57.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1871, N'GHHFIWK             ', N'Hietamies                                                                                           ', N'Gerda                                                                                               ', 16, 7, 0, CAST(N'2016-12-23T10:19:57.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1872, N'PKTBFXN             ', N'Kiiskinen                                                                                           ', N'Potatosower                                                                                         ', 2, 3, 0, CAST(N'2016-12-23T10:19:58.143' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1873, N'ACMINVU             ', N'Calfuray                                                                                            ', N'Arnie                                                                                               ', 71, 1, 0, CAST(N'2016-12-23T10:19:58.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1874, N'TBNBRVQ             ', N'Bolger-Baggins                                                                                      ', N'Twinkleberry                                                                                        ', 17, 3, 0, CAST(N'2016-12-23T10:19:58.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1875, N'PSKBCHK             ', N'Sugarkiss                                                                                           ', N'Punch                                                                                               ', 40, 8, 0, CAST(N'2016-12-23T10:19:58.797' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1876, N'APNWEDI             ', N'Philomel                                                                                            ', N'Aili                                                                                                ', 11, 8, 0, CAST(N'2016-12-23T10:19:59.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1877, N'GSGTJKH             ', N'Scourge                                                                                             ', N'Goldstar                                                                                            ', 20, 6, 0, CAST(N'2016-12-23T10:19:59.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1878, N'PSTSSHF             ', N'Studwick                                                                                            ', N'Pollyanna                                                                                           ', 28, 4, 0, CAST(N'2016-12-23T10:19:59.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1879, N'ACLQXLI             ', N'Chubb                                                                                               ', N'Arcana                                                                                              ', 14, 6, 0, CAST(N'2016-12-23T10:19:59.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1880, N'CSQBDAF             ', N'Spacespirit                                                                                         ', N'Carbry                                                                                              ', 8, 6, 0, CAST(N'2016-12-23T10:19:59.877' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1881, N'ALHPNSG             ', N'Leavitt                                                                                             ', N'Arabella                                                                                            ', 29, 2, 0, CAST(N'2016-12-23T10:20:18.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1882, N'GBTRSSY             ', N'Badcock                                                                                             ', N'Gigglering                                                                                          ', 9, 2, 0, CAST(N'2016-12-23T10:20:19.203' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1883, N'SCVRIEY             ', N'Calfuray                                                                                            ', N'Scotty                                                                                              ', 15, 5, 0, CAST(N'2016-12-23T10:20:19.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1884, N'BHHHDDR             ', N'Hagstr m                                                                                            ', N'Beeatriks                                                                                           ', 3, 4, 0, CAST(N'2016-12-23T10:20:19.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1885, N'AHELXPX             ', N'Hagstr m                                                                                            ', N'Aili                                                                                                ', 52, 8, 0, CAST(N'2016-12-23T10:20:19.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1886, N'CRPMYMJ             ', N'Ranald                                                                                              ', N'Corona                                                                                              ', 12, 5, 0, CAST(N'2016-12-23T10:20:20.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1887, N'ZSJGTRX             ', N'Spacespirit                                                                                         ', N'Za re                                                                                               ', 35, 4, 0, CAST(N'2016-12-23T10:20:20.293' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1888, N'KLTMIEM             ', N'Leelo                                                                                               ', N'Katariina                                                                                           ', 6, 4, 0, CAST(N'2016-12-23T10:20:20.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1889, N'CFEOCDE             ', N'Fairbairn                                                                                           ', N'Clearkiss                                                                                           ', 21, 7, 0, CAST(N'2016-12-23T10:20:20.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1890, N'MSCBBBL             ', N'Schuler                                                                                             ', N'Methoataske                                                                                         ', 58, 8, 0, CAST(N'2016-12-23T10:20:20.937' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1891, N'EQLSEAT             ', N'Quickberry                                                                                          ', N'Everild                                                                                             ', 64, 1, 0, CAST(N'2016-12-23T10:20:21.143' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1892, N'DGUOCUO             ', N'Gamgee                                                                                              ', N'Dirk                                                                                                ', 38, 7, 0, CAST(N'2016-12-23T10:20:21.363' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1893, N'KACWVXM             ', N'Alberts                                                                                             ', N'Kadri                                                                                               ', 7, 6, 0, CAST(N'2016-12-23T10:20:21.573' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1894, N'PKRNASN             ', N'Kaisa                                                                                               ', N'Pounce                                                                                              ', 70, 4, 0, CAST(N'2016-12-23T10:20:21.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1895, N'APQNRTH             ', N'Payton                                                                                              ', N'Aleksander                                                                                          ', 18, 5, 0, CAST(N'2016-12-23T10:20:22.003' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1896, N'ENSBSNK             ', N'Naira                                                                                               ', N'Everild                                                                                             ', 30, 5, 0, CAST(N'2016-12-23T10:20:22.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1897, N'PMQUCJH             ', N'Meissner                                                                                            ', N'Punch                                                                                               ', 10, 3, 0, CAST(N'2016-12-23T10:20:22.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1898, N'PTKBHKL             ', N'Tyrrell                                                                                             ', N'Pollyanna                                                                                           ', 41, 5, 0, CAST(N'2016-12-23T10:20:22.647' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1899, N'ACSGUAV             ', N'Chubb-Baggins                                                                                       ', N'Arnie                                                                                               ', 4, 6, 0, CAST(N'2016-12-23T10:20:22.883' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1900, N'SGMDOGK             ', N'Goold                                                                                               ', N'Silvernose                                                                                          ', 19, 7, 0, CAST(N'2016-12-23T10:20:23.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1901, N'OAXOXIG             ', N'Anthonyson                                                                                          ', N'Octane                                                                                              ', 36, 6, 0, CAST(N'2016-12-23T10:20:23.323' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1902, N'SLJUPNI             ', N'Lothran                                                                                             ', N'Scourge                                                                                             ', 13, 4, 0, CAST(N'2016-12-23T10:20:23.547' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1903, N'KALCBHQ             ', N'Aylen                                                                                               ', N'Kermit                                                                                              ', 42, 3, 0, CAST(N'2016-12-23T10:20:23.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1904, N'CKCVPPB             ', N'Kaisa                                                                                               ', N'Ceallagh                                                                                            ', 5, 2, 0, CAST(N'2016-12-23T10:20:23.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1905, N'GJWMJKP             ', N'Jakeman                                                                                             ', N'Gentlegleam                                                                                         ', 39, 6, 0, CAST(N'2016-12-23T10:20:24.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1906, N'TATJUUO             ', N'Albert                                                                                              ', N'Tasgall                                                                                             ', 33, 7, 0, CAST(N'2016-12-23T10:20:24.417' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1907, N'MIGRHLT             ', N'Ibbott                                                                                              ', N'Mari                                                                                                ', 16, 4, 0, CAST(N'2016-12-23T10:20:24.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1908, N'HSCOHJT             ', N'Sempers                                                                                             ', N'Herbie                                                                                              ', 2, 8, 0, CAST(N'2016-12-23T10:20:24.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1909, N'JFSKEYU             ', N'Fairbairn                                                                                           ', N'Johanna                                                                                             ', 71, 6, 0, CAST(N'2016-12-23T10:20:25.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1910, N'DBQQUSW             ', N'Badcock                                                                                             ', N'Dirk                                                                                                ', 17, 2, 0, CAST(N'2016-12-23T10:20:25.293' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1911, N'ADLMOQW             ', N'Donohoe                                                                                             ', N'Angelica                                                                                            ', 40, 2, 0, CAST(N'2016-12-23T10:20:25.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1912, N'SSDVXRH             ', N'Sigrid                                                                                              ', N'Silverfrost                                                                                         ', 11, 7, 0, CAST(N'2016-12-23T10:20:25.733' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1913, N'HNKKYGN             ', N'Nye                                                                                                 ', N'Highbrow                                                                                            ', 20, 4, 0, CAST(N'2016-12-23T10:20:25.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1914, N'DRSUYOM             ', N'Ranald                                                                                              ', N'Douglas                                                                                             ', 28, 2, 0, CAST(N'2016-12-23T10:20:26.167' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1915, N'JLPPSJC             ', N'Leelo                                                                                               ', N'Jellygleam                                                                                          ', 14, 7, 0, CAST(N'2016-12-23T10:20:26.383' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1916, N'DARWGOR             ', N'Allsopp                                                                                             ', N'Dietfried                                                                                           ', 8, 1, 0, CAST(N'2016-12-23T10:20:26.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1917, N'MGKXEYP             ', N'Gamgee                                                                                              ', N'Methoataske                                                                                         ', 29, 1, 0, CAST(N'2016-12-23T10:20:31.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1918, N'DSAVUKL             ', N'Seedfarmer                                                                                          ', N'Defensor                                                                                            ', 9, 2, 0, CAST(N'2016-12-23T10:20:31.793' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1919, N'TLLEMSQ             ', N'Longhole                                                                                            ', N'Titania                                                                                             ', 15, 2, 0, CAST(N'2016-12-23T10:20:32.003' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1920, N'BTERQJM             ', N'Topanga                                                                                             ', N'Bob                                                                                                 ', 3, 3, 0, CAST(N'2016-12-23T10:20:32.213' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1921, N'CHBBOGA             ', N'Hawking                                                                                             ', N'Crippler                                                                                            ', 52, 8, 0, CAST(N'2016-12-23T10:20:32.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1922, N'RMVQFLN             ', N'McKenzie                                                                                            ', N'Riina                                                                                               ', 12, 2, 0, CAST(N'2016-12-23T10:20:32.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1923, N'FSLHNXN             ', N'Sparklemoon                                                                                         ', N'Fluttersheen                                                                                        ', 35, 3, 0, CAST(N'2016-12-23T10:20:32.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1924, N'SAPARIV             ', N'Allsopp                                                                                             ', N'Sleek                                                                                               ', 6, 4, 0, CAST(N'2016-12-23T10:20:33.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1925, N'CMRYHPW             ', N'McGently                                                                                            ', N'Chickenchaser                                                                                       ', 21, 5, 0, CAST(N'2016-12-23T10:20:33.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1926, N'PGWCKFP             ', N'Gears                                                                                               ', N'Potatosower                                                                                         ', 58, 7, 0, CAST(N'2016-12-23T10:20:33.533' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1927, N'MPRBQIM             ', N'Potatochaser                                                                                        ', N'Marika                                                                                              ', 64, 7, 0, CAST(N'2016-12-23T10:20:33.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1928, N'MCQGSMS             ', N'Clarkson                                                                                            ', N'Matilda                                                                                             ', 38, 4, 0, CAST(N'2016-12-23T10:20:33.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1929, N'JAUYORE             ', N'Albert                                                                                              ', N'Jessamine                                                                                           ', 7, 5, 0, CAST(N'2016-12-23T10:20:34.153' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1930, N'FHUXMAC             ', N'Hawking                                                                                             ', N'Flitterstar                                                                                         ', 70, 5, 0, CAST(N'2016-12-23T10:20:34.367' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1931, N'LNOPPRO             ', N'Nevin                                                                                               ', N'Lavinia                                                                                             ', 18, 6, 0, CAST(N'2016-12-23T10:20:34.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1932, N'DOTQORV             ', N'Ogden                                                                                               ', N'Donnamira                                                                                           ', 30, 6, 0, CAST(N'2016-12-23T10:20:34.803' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1933, N'RGGLDMH             ', N'Gamgee                                                                                              ', N'Rhoda                                                                                               ', 10, 6, 0, CAST(N'2016-12-23T10:20:35.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1934, N'SOEATAL             ', N'Ogden                                                                                               ', N'Sally                                                                                               ', 41, 2, 0, CAST(N'2016-12-23T10:20:35.253' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1935, N'MRDQAOI             ', N'Ruairi                                                                                              ', N'Matilda                                                                                             ', 4, 2, 0, CAST(N'2016-12-23T10:20:35.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1936, N'AKDIUDU             ', N'Kreka                                                                                               ', N'Anni                                                                                                ', 19, 1, 0, CAST(N'2016-12-23T10:20:35.687' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1937, N'ACWQNIX             ', N'Chubb                                                                                               ', N'Arden                                                                                               ', 36, 6, 0, CAST(N'2016-12-23T10:20:35.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1938, N'DNIPUOV             ', N'Nita                                                                                                ', N'Douglas                                                                                             ', 13, 5, 0, CAST(N'2016-12-23T10:20:36.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1939, N'KOHWNAY             ', N'Ogden                                                                                               ', N'Kerr                                                                                                ', 42, 7, 0, CAST(N'2016-12-23T10:20:36.327' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1940, N'MJSGMFP             ', N'Julitta                                                                                             ', N'Marika                                                                                              ', 5, 4, 0, CAST(N'2016-12-23T10:20:36.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1941, N'HMIVOLA             ', N'Mirjam                                                                                              ', N'Harmony                                                                                             ', 39, 5, 0, CAST(N'2016-12-23T10:20:36.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1942, N'AGPWXGO             ', N'Gears                                                                                               ', N'Arcana                                                                                              ', 33, 8, 0, CAST(N'2016-12-23T10:20:36.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1943, N'SSOGIVY             ', N'Schuler                                                                                             ', N'Sweetstar                                                                                           ', 16, 1, 0, CAST(N'2016-12-23T10:20:37.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1944, N'MMKSXOU             ', N'MacClelland                                                                                         ', N'Mirjam                                                                                              ', 2, 4, 0, CAST(N'2016-12-23T10:20:37.397' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1945, N'ASHXIYS             ', N'Snowfeather                                                                                         ', N'Alfred                                                                                              ', 71, 7, 0, CAST(N'2016-12-23T10:20:37.613' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1946, N'EKIPIMA             ', N'Kaja                                                                                                ', N'Everild                                                                                             ', 17, 1, 0, CAST(N'2016-12-23T10:20:37.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1947, N'BWJWGVU             ', N'Whitfoot                                                                                            ', N'Beeatriks                                                                                           ', 40, 8, 0, CAST(N'2016-12-23T10:20:38.047' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1948, N'AOQANVT             ', N'Ogden                                                                                               ', N'Almira                                                                                              ', 11, 6, 0, CAST(N'2016-12-23T10:20:38.270' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1949, N'PDSWXIC             ', N'Donohoe                                                                                             ', N'Pollyanna                                                                                           ', 20, 7, 0, CAST(N'2016-12-23T10:20:38.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1950, N'RKXPOAC             ', N'Klowee                                                                                              ', N'Rhino                                                                                               ', 28, 4, 0, CAST(N'2016-12-23T10:20:38.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1951, N'FJWYTNY             ', N'J rvinen                                                                                            ', N'Flitterstar                                                                                         ', 14, 3, 0, CAST(N'2016-12-23T10:20:38.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1952, N'GBEDOJF             ', N'Biceps                                                                                              ', N'Goldstar                                                                                            ', 8, 4, 0, CAST(N'2016-12-23T10:20:39.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1953, N'DHQWNIF             ', N'Hogpen                                                                                              ', N'Dina                                                                                                ', 29, 1, 0, CAST(N'2016-12-23T10:20:46.653' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1954, N'RHHMDAG             ', N'Hagstr m                                                                                            ', N'Rhino                                                                                               ', 9, 4, 0, CAST(N'2016-12-23T10:20:46.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1955, N'RSIDHXD             ', N'Sparklemoon                                                                                         ', N'Rosa                                                                                                ', 15, 1, 0, CAST(N'2016-12-23T10:20:47.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1956, N'MBCECNH             ', N'Breakdown                                                                                           ', N'Morgen                                                                                              ', 3, 2, 0, CAST(N'2016-12-23T10:20:47.297' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1957, N'TUEGTNX             ', N'Ulalume                                                                                             ', N'Tasgall                                                                                             ', 52, 3, 0, CAST(N'2016-12-23T10:20:47.507' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1958, N'CKCOMNN             ', N'Kreka                                                                                               ', N'Crippler                                                                                            ', 12, 5, 0, CAST(N'2016-12-23T10:20:47.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1959, N'KTDJHYS             ', N'Tyrrell                                                                                             ', N'Kerr                                                                                                ', 35, 1, 0, CAST(N'2016-12-23T10:20:47.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1960, N'AHSJLRG             ', N'Hofmann                                                                                             ', N'Aleksandra                                                                                          ', 6, 1, 0, CAST(N'2016-12-23T10:20:48.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1961, N'HMAFVSE             ', N'McBelle                                                                                             ', N'Hingle                                                                                              ', 21, 5, 0, CAST(N'2016-12-23T10:20:48.363' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1962, N'ARPCVIO             ', N'Ra                                                                                                  ', N'Ailpein                                                                                             ', 58, 7, 0, CAST(N'2016-12-23T10:20:48.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1963, N'HSXKYMQ             ', N'Sulin                                                                                               ', N'Henna                                                                                               ', 64, 6, 0, CAST(N'2016-12-23T10:20:48.803' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1964, N'DQEUOKD             ', N'Quickmoon                                                                                           ', N'Dirk                                                                                                ', 38, 8, 0, CAST(N'2016-12-23T10:20:49.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1965, N'DOKVPXK             ', N'Ogden                                                                                               ', N'Douglas                                                                                             ', 7, 6, 0, CAST(N'2016-12-23T10:20:49.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1966, N'RGCMXFV             ', N'Gentlemoon                                                                                          ', N'Rein                                                                                                ', 70, 5, 0, CAST(N'2016-12-23T10:20:49.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1967, N'MGKWHMP             ', N'Golddust                                                                                            ', N'Morgen                                                                                              ', 18, 7, 0, CAST(N'2016-12-23T10:20:49.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1968, N'DKGKBPJ             ', N'Kaja                                                                                                ', N'Dazzledust                                                                                          ', 30, 1, 0, CAST(N'2016-12-23T10:20:49.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1969, N'MWFYRTJ             ', N'Warrick                                                                                             ', N'Maitland                                                                                            ', 10, 6, 0, CAST(N'2016-12-23T10:20:50.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1970, N'LIRELIT             ', N'Iomhar                                                                                              ', N'Lalla                                                                                               ', 41, 5, 0, CAST(N'2016-12-23T10:20:50.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1971, N'SLDBXMG             ', N'Leelo                                                                                               ', N'Sean                                                                                                ', 4, 6, 0, CAST(N'2016-12-23T10:20:50.553' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1972, N'ALTEHCG             ', N'Levy                                                                                                ', N'Alodia                                                                                              ', 19, 4, 0, CAST(N'2016-12-23T10:20:50.767' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1973, N'GBYEWQX             ', N'Bolger                                                                                              ', N'Goldshy                                                                                             ', 36, 1, 0, CAST(N'2016-12-23T10:20:51.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1974, N'CMNQRMW             ', N'Manninen                                                                                            ', N'Crippler                                                                                            ', 13, 2, 0, CAST(N'2016-12-23T10:20:51.213' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1975, N'OPEMNTS             ', N'Potatochaser                                                                                        ', N'Oatchaser                                                                                           ', 42, 5, 0, CAST(N'2016-12-23T10:20:51.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1976, N'HRIAAJP             ', N'Roxelana                                                                                            ', N'Haidee                                                                                              ', 5, 8, 0, CAST(N'2016-12-23T10:20:51.660' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1977, N'WSRSMYF             ', N'School                                                                                              ', N'Wingspan                                                                                            ', 39, 1, 0, CAST(N'2016-12-23T10:20:51.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1978, N'AAJAAKT             ', N'Andersen                                                                                            ', N'Annukka                                                                                             ', 33, 4, 0, CAST(N'2016-12-23T10:20:52.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1979, N'ADEPQMM             ', N'Dulcinea                                                                                            ', N'Arden                                                                                               ', 16, 5, 0, CAST(N'2016-12-23T10:20:52.300' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1980, N'HLXTPIY             ', N'Lightfoot                                                                                           ', N'Highbrow                                                                                            ', 2, 4, 0, CAST(N'2016-12-23T10:20:52.517' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1981, N'FKABDYY             ', N'Kaisa                                                                                               ', N'Fergus                                                                                              ', 71, 3, 0, CAST(N'2016-12-23T10:20:52.733' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1982, N'MCHBJEY             ', N'Clarkson                                                                                            ', N'Marika                                                                                              ', 17, 1, 0, CAST(N'2016-12-23T10:20:52.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1983, N'GPLEXGE             ', N'Peacespirit                                                                                         ', N'Grimalda                                                                                            ', 40, 5, 0, CAST(N'2016-12-23T10:20:53.210' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1984, N'VSKCNHI             ', N'Sureshot                                                                                            ', N'Viktoria                                                                                            ', 11, 1, 0, CAST(N'2016-12-23T10:20:53.660' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1985, N'PSMBRSP             ', N'School                                                                                              ', N'Pipaluk                                                                                             ', 20, 7, 0, CAST(N'2016-12-23T10:20:53.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1986, N'DPJBBWE             ', N'Proudfoot                                                                                           ', N'Dazzledust                                                                                          ', 28, 7, 0, CAST(N'2016-12-23T10:20:54.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1987, N'DCKXJDH             ', N'Chubb                                                                                               ', N'Dina                                                                                                ', 14, 6, 0, CAST(N'2016-12-23T10:20:54.423' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (1988, N'DKVPKLH             ', N'Kiiskinen                                                                                           ', N'Douglas                                                                                             ', 8, 2, 0, CAST(N'2016-12-23T10:20:54.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2277, N'GSAMIKV             ', N'Sulin                                                                                               ', N'Goldstar                                                                                            ', 29, 4, 0, CAST(N'2016-12-23T10:44:56.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2278, N'CKIMDGU             ', N'Klowee                                                                                              ', N'Crazy                                                                                               ', 9, 5, 0, CAST(N'2016-12-23T10:44:57.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2279, N'MCCPSSD             ', N'Cosmicmother                                                                                        ', N'Morgen                                                                                              ', 15, 5, 0, CAST(N'2016-12-23T10:44:57.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2280, N'TPFTDOM             ', N'Paasivirta                                                                                          ', N'Tasgall                                                                                             ', 3, 6, 0, CAST(N'2016-12-23T10:44:58.193' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2281, N'SADHTNC             ', N'Andersen                                                                                            ', N'Sweetstar                                                                                           ', 52, 5, 0, CAST(N'2016-12-23T10:44:58.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2282, N'CKYUFLS             ', N'Kreka                                                                                               ', N'Ceallagh                                                                                            ', 12, 3, 0, CAST(N'2016-12-23T10:44:59.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2283, N'MSQLNKM             ', N'Starscream                                                                                          ', N'Marika                                                                                              ', 35, 5, 0, CAST(N'2016-12-23T10:44:59.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2284, N'THFAFEN             ', N'Hanley                                                                                              ', N'Tasgall                                                                                             ', 6, 7, 0, CAST(N'2016-12-23T10:45:00.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2285, N'DKAQTMV             ', N'Kaja                                                                                                ', N'Dirtgreaser                                                                                         ', 21, 4, 0, CAST(N'2016-12-23T10:45:00.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2286, N'ASXRFVK             ', N'Schmid                                                                                              ', N'Ayelen                                                                                              ', 58, 6, 0, CAST(N'2016-12-23T10:45:00.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2287, N'ADDXGRD             ', N'Donnchadh                                                                                           ', N'Almira                                                                                              ', 64, 8, 0, CAST(N'2016-12-23T10:45:01.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2288, N'VAXNNYQ             ', N'Albert                                                                                              ', N'Victor                                                                                              ', 38, 2, 0, CAST(N'2016-12-23T10:45:01.967' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2289, N'ZMCYRSQ             ', N'Maoilios                                                                                            ', N'Zyanya                                                                                              ', 7, 1, 0, CAST(N'2016-12-23T10:45:02.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2290, N'DSVAMEC             ', N'Smith                                                                                               ', N'Dirk                                                                                                ', 70, 5, 0, CAST(N'2016-12-23T10:45:02.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2291, N'CKWTNTW             ', N'Kateri                                                                                              ', N'Cyra                                                                                                ', 18, 5, 0, CAST(N'2016-12-23T10:45:03.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2292, N'HSKBSUW             ', N'Siiri                                                                                               ', N'Hannah                                                                                              ', 30, 5, 0, CAST(N'2016-12-23T10:45:03.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2293, N'CMPDGGB             ', N'Mirjam                                                                                              ', N'Chickenchaser                                                                                       ', 10, 8, 0, CAST(N'2016-12-23T10:45:04.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2294, N'PCDPORQ             ', N'Clarkson                                                                                            ', N'Pollyanna                                                                                           ', 41, 3, 0, CAST(N'2016-12-23T10:45:04.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2295, N'NSRTFRI             ', N'Simpkin                                                                                             ', N'Nina                                                                                                ', 4, 7, 0, CAST(N'2016-12-23T10:45:04.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2296, N'SRBVTMS             ', N'Ruairi                                                                                              ', N'Sacnite                                                                                             ', 19, 7, 0, CAST(N'2016-12-23T10:45:05.417' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2297, N'LHOAVKM             ', N'Hornblower                                                                                          ', N'Lightspeed                                                                                          ', 36, 7, 0, CAST(N'2016-12-23T10:45:05.713' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2298, N'CMCNJNW             ', N'Marcas                                                                                              ', N'Ceallagh                                                                                            ', 13, 7, 0, CAST(N'2016-12-23T10:45:06.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2299, N'MEQICIB             ', N'Error                                                                                               ', N'Maimu                                                                                               ', 42, 3, 0, CAST(N'2016-12-23T10:45:06.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2300, N'APUEDVM             ', N'Proudfoot                                                                                           ', N'Arnie                                                                                               ', 5, 6, 0, CAST(N'2016-12-23T10:45:06.997' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2301, N'DFIFNRL             ', N'Fraser                                                                                              ', N'Dirk                                                                                                ', 39, 5, 0, CAST(N'2016-12-23T10:45:07.420' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2302, N'DSUWIMH             ', N'Sackville                                                                                           ', N'Dirtgreaser                                                                                         ', 33, 2, 0, CAST(N'2016-12-23T10:45:07.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2303, N'DJXJCGS             ', N'Junge                                                                                               ', N'Douglas                                                                                             ', 16, 8, 0, CAST(N'2016-12-23T10:45:08.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2304, N'RSXCJKW             ', N'Stone                                                                                               ', N'Ross                                                                                                ', 2, 4, 0, CAST(N'2016-12-23T10:45:08.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2305, N'CGUQLBB             ', N'Glitterfluff                                                                                        ', N'Crazy                                                                                               ', 71, 8, 0, CAST(N'2016-12-23T10:45:09.193' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2306, N'MVSJLAO             ', N'Venom                                                                                               ', N'Mari                                                                                                ', 17, 8, 0, CAST(N'2016-12-23T10:45:09.533' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2307, N'DSEXDKY             ', N'Starbeam                                                                                            ', N'Devastator                                                                                          ', 40, 6, 0, CAST(N'2016-12-23T10:45:09.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2308, N'RSJNQUI             ', N'Saraste                                                                                             ', N'Rosa                                                                                                ', 11, 3, 0, CAST(N'2016-12-23T10:45:10.497' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2309, N'BSCSYSL             ', N'Sulin                                                                                               ', N'Blair                                                                                               ', 20, 5, 0, CAST(N'2016-12-23T10:45:10.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2310, N'AWJOKIJ             ', N'Whitfoot                                                                                            ', N'Almira                                                                                              ', 28, 8, 0, CAST(N'2016-12-23T10:45:11.367' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2311, N'KRJVARX             ', N'Roxelana                                                                                            ', N'Kim                                                                                                 ', 14, 2, 0, CAST(N'2016-12-23T10:45:11.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2312, N'TBABBDK             ', N'Breakdown                                                                                           ', N'Terje                                                                                               ', 8, 4, 0, CAST(N'2016-12-23T10:45:12.297' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2313, N'KSMSWHN             ', N'Snowfeather                                                                                         ', N'Kim                                                                                                 ', 29, 8, 0, CAST(N'2016-12-23T10:47:35.417' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2314, N'KLKKSFY             ', N'Leelo                                                                                               ', N'Kerr                                                                                                ', 9, 4, 0, CAST(N'2016-12-23T10:47:35.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2315, N'DMLHCTP             ', N'Marika                                                                                              ', N'Dina                                                                                                ', 15, 3, 0, CAST(N'2016-12-23T10:47:36.300' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2316, N'ASTUIYK             ', N'Siiri                                                                                               ', N'Anna                                                                                                ', 3, 7, 0, CAST(N'2016-12-23T10:47:36.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2317, N'MMISDRY             ', N'McBelle                                                                                             ', N'Melissa                                                                                             ', 52, 1, 0, CAST(N'2016-12-23T10:47:37.087' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2318, N'SAMEMEA             ', N'Anthonyson                                                                                          ', N'Scourge                                                                                             ', 12, 2, 0, CAST(N'2016-12-23T10:47:37.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2319, N'LGTCYVU             ', N'Griffin                                                                                             ', N'Loyd                                                                                                ', 35, 5, 0, CAST(N'2016-12-23T10:47:37.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2320, N'DMTEYTG             ', N'Meissner                                                                                            ', N'Dirk                                                                                                ', 6, 6, 0, CAST(N'2016-12-23T10:47:38.387' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2321, N'CKQUJNC             ', N'Kaja                                                                                                ', N'Cyra                                                                                                ', 21, 5, 0, CAST(N'2016-12-23T10:47:38.703' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2322, N'BMFOHRA             ', N'McNaughton                                                                                          ', N'Bertram                                                                                             ', 58, 3, 0, CAST(N'2016-12-23T10:47:39.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2323, N'PJXVMIG             ', N'Julitta                                                                                             ', N'Perceptor                                                                                           ', 64, 3, 0, CAST(N'2016-12-23T10:47:39.450' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2324, N'QVAGHBO             ', N'Venom                                                                                               ', N'Quickdance                                                                                          ', 38, 8, 0, CAST(N'2016-12-23T10:47:39.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2325, N'ASHXUOV             ', N'Stone                                                                                               ', N'Atomic                                                                                              ', 7, 2, 0, CAST(N'2016-12-23T10:47:40.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2326, N'PGXWMKR             ', N'Gamgee                                                                                              ', N'Perceptor                                                                                           ', 70, 7, 0, CAST(N'2016-12-23T10:47:40.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2327, N'PMJOFQE             ', N'McSpuddy                                                                                            ', N'Phoenix                                                                                             ', 18, 8, 0, CAST(N'2016-12-23T10:47:41.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2328, N'DSBOINR             ', N'Sludge                                                                                              ', N'Devastator                                                                                          ', 30, 1, 0, CAST(N'2016-12-23T10:47:41.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2329, N'WSBLXYX             ', N'Snowfeather                                                                                         ', N'Webster                                                                                             ', 10, 3, 0, CAST(N'2016-12-23T10:47:41.937' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2330, N'SMITOQD             ', N'McSpuddy                                                                                            ', N'Spud                                                                                                ', 41, 8, 0, CAST(N'2016-12-23T10:47:42.257' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2331, N'PSKXXPD             ', N'Studwick                                                                                            ', N'Peggy-Rae                                                                                           ', 4, 6, 0, CAST(N'2016-12-23T10:47:42.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2332, N'MMISTKO             ', N'McCringleberry                                                                                      ', N'Marika                                                                                              ', 19, 2, 0, CAST(N'2016-12-23T10:47:43.190' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2333, N'SJHBEJX             ', N'Jazz                                                                                                ', N'Silverfrost                                                                                         ', 36, 3, 0, CAST(N'2016-12-23T10:47:43.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2334, N'DMWIGUM             ', N'Marcas                                                                                              ', N'Donnamira                                                                                           ', 13, 5, 0, CAST(N'2016-12-23T10:47:43.953' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2335, N'ABNSTAN             ', N'Breakdown                                                                                           ', N'Aili                                                                                                ', 42, 5, 0, CAST(N'2016-12-23T10:47:44.573' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2336, N'AGPIDLV             ', N'Grubb                                                                                               ', N'Alasdair                                                                                            ', 5, 3, 0, CAST(N'2016-12-23T10:47:45.043' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2337, N'FMEMLTV             ', N'McSpuddy                                                                                            ', N'Fergus                                                                                              ', 39, 8, 0, CAST(N'2016-12-23T10:47:45.380' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2338, N'DIBMQHS             ', N'Ibbott                                                                                              ', N'Daisy                                                                                               ', 33, 5, 0, CAST(N'2016-12-23T10:47:45.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2339, N'KSJHUGX             ', N'Scourge                                                                                             ', N'Knut                                                                                                ', 16, 5, 0, CAST(N'2016-12-23T10:47:46.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2340, N'DKTPDAD             ', N'Koenig                                                                                              ', N'Dirk                                                                                                ', 2, 1, 0, CAST(N'2016-12-23T10:47:46.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2341, N'GMDBGCV             ', N'Maoilios                                                                                            ', N'Grimalda                                                                                            ', 71, 1, 0, CAST(N'2016-12-23T10:47:47.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2342, N'EBCORJK             ', N'Blitzwing                                                                                           ', N'Emmi                                                                                                ', 17, 7, 0, CAST(N'2016-12-23T10:47:47.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2343, N'EFSQYSF             ', N'Fantine                                                                                             ', N'Elsdon                                                                                              ', 40, 4, 0, CAST(N'2016-12-23T10:47:47.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2344, N'TPHHAGE             ', N'Potatochaser                                                                                        ', N'Terje                                                                                               ', 11, 3, 0, CAST(N'2016-12-23T10:47:48.237' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2345, N'HSVKBQB             ', N'Saraste                                                                                             ', N'Hannah                                                                                              ', 20, 2, 0, CAST(N'2016-12-23T10:47:48.803' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2346, N'BRJCDTU             ', N'Rippersnapper                                                                                       ', N'Bob                                                                                                 ', 28, 4, 0, CAST(N'2016-12-23T10:47:49.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2347, N'TZRBQAY             ', N'Zuleika                                                                                             ', N'Twinkleleaf                                                                                         ', 14, 7, 0, CAST(N'2016-12-23T10:47:49.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2348, N'ASUWTYM             ', N'Schmid                                                                                              ', N'Atomic                                                                                              ', 8, 3, 0, CAST(N'2016-12-23T10:47:49.947' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2385, N'HSERLQJ             ', N'Sandheaver                                                                                          ', N'Hingle                                                                                              ', 29, 7, 0, CAST(N'2016-12-23T11:09:27.303' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2386, N'AQWLDQX             ', N'Quickleaf                                                                                           ', N'Amanda                                                                                              ', 9, 6, 0, CAST(N'2016-12-23T11:09:27.573' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2387, N'AKSXESW             ', N'Kaja                                                                                                ', N'Arden                                                                                               ', 15, 4, 0, CAST(N'2016-12-23T11:09:27.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2388, N'ASJWFSG             ', N'Scourge                                                                                             ', N'Aloysius                                                                                            ', 3, 4, 0, CAST(N'2016-12-23T11:09:28.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2389, N'HCPAGOT             ', N'Cringleberry                                                                                        ', N'Hingle                                                                                              ', 52, 7, 0, CAST(N'2016-12-23T11:09:28.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2390, N'CPXWACG             ', N'Pocahontas                                                                                          ', N'Crazy                                                                                               ', 12, 2, 0, CAST(N'2016-12-23T11:09:28.600' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2391, N'SSXHEOO             ', N'Smith                                                                                               ', N'Snowdance                                                                                           ', 35, 1, 0, CAST(N'2016-12-23T11:09:28.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2392, N'DJNCGXB             ', N'Julitta                                                                                             ', N'Defensor                                                                                            ', 6, 6, 0, CAST(N'2016-12-23T11:09:29.067' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2393, N'LBSBCTL             ', N'Bolger                                                                                              ', N'Lalla                                                                                               ', 21, 4, 0, CAST(N'2016-12-23T11:09:29.313' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2394, N'MMAWWAF             ', N'Mirjam                                                                                              ', N'Mira                                                                                                ', 58, 3, 0, CAST(N'2016-12-23T11:09:29.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2395, N'TPTWYBT             ', N'Peacespirit                                                                                         ', N'Terje                                                                                               ', 64, 7, 0, CAST(N'2016-12-23T11:09:29.773' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2396, N'AKQWCTY             ', N'Kaisa                                                                                               ', N'Arlen                                                                                               ', 38, 8, 0, CAST(N'2016-12-23T11:09:30.003' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2397, N'DARDGUI             ', N'Alberts                                                                                             ', N'Double                                                                                              ', 7, 6, 0, CAST(N'2016-12-23T11:09:30.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2398, N'CCUVIRE             ', N'Cringleberry                                                                                        ', N'Corona                                                                                              ', 70, 7, 0, CAST(N'2016-12-23T11:09:30.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2399, N'KSUHUJW             ', N'Siiri                                                                                               ', N'Kermit                                                                                              ', 18, 2, 0, CAST(N'2016-12-23T11:09:30.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2400, N'ARCKMVY             ', N'Roxelana                                                                                            ', N'Arden                                                                                               ', 30, 5, 0, CAST(N'2016-12-23T11:09:30.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2401, N'ETPJJFU             ', N'Tyrrell                                                                                             ', N'Elsdon                                                                                              ', 10, 7, 0, CAST(N'2016-12-23T11:09:31.143' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2402, N'PJEUDKM             ', N'Julitta                                                                                             ', N'Pollyanna                                                                                           ', 41, 3, 0, CAST(N'2016-12-23T11:09:31.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2403, N'OHFUCFI             ', N'Hogpen                                                                                              ', N'Octane                                                                                              ', 4, 6, 0, CAST(N'2016-12-23T11:09:31.600' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2404, N'ASOEVJU             ', N'Spacespirit                                                                                         ', N'Alodia                                                                                              ', 19, 1, 0, CAST(N'2016-12-23T11:09:31.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2405, N'PRBOKMV             ', N'Ruairi                                                                                              ', N'Pansy                                                                                               ', 36, 5, 0, CAST(N'2016-12-23T11:09:32.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2406, N'SROHSHM             ', N'Ruairi                                                                                              ', N'Sheard                                                                                              ', 13, 3, 0, CAST(N'2016-12-23T11:09:32.297' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2407, N'EKKMCQA             ', N'Keith                                                                                               ', N'Elsdon                                                                                              ', 42, 8, 0, CAST(N'2016-12-23T11:09:32.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2408, N'HSXLRIU             ', N'Snowfeather                                                                                         ', N'Hingle                                                                                              ', 5, 6, 0, CAST(N'2016-12-23T11:09:32.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2409, N'MSRJHWE             ', N'Sulin                                                                                               ', N'Mirjam                                                                                              ', 39, 3, 0, CAST(N'2016-12-23T11:09:33.003' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2410, N'MQMFWAC             ', N'Quickleaf                                                                                           ', N'Marika                                                                                              ', 33, 5, 0, CAST(N'2016-12-23T11:09:33.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2411, N'SSOFKNP             ', N'Sackville                                                                                           ', N'Spud                                                                                                ', 16, 1, 0, CAST(N'2016-12-23T11:09:33.487' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2412, N'PHXWVFV             ', N'Hagstr m                                                                                            ', N'Pollyanna                                                                                           ', 2, 1, 0, CAST(N'2016-12-23T11:09:33.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2413, N'JMNIWCY             ', N'McCringleberry                                                                                      ', N'Joyce                                                                                               ', 71, 6, 0, CAST(N'2016-12-23T11:09:33.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2414, N'APEPCKF             ', N'Prowl                                                                                               ', N'Ayelen                                                                                              ', 17, 4, 0, CAST(N'2016-12-23T11:09:34.177' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2415, N'HPQBDBN             ', N'Payton                                                                                              ', N'Hannah                                                                                              ', 40, 5, 0, CAST(N'2016-12-23T11:09:34.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2416, N'ANJHHRJ             ', N'Nevin                                                                                               ', N'Ayelen                                                                                              ', 11, 2, 0, CAST(N'2016-12-23T11:09:34.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2417, N'PWXMWDF             ', N'Wheeljack                                                                                           ', N'Powerglide                                                                                          ', 20, 6, 0, CAST(N'2016-12-23T11:09:34.873' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2421, N'BPKCFYW             ', N'Peacespirit                                                                                         ', N'Barleyfarmer                                                                                        ', 29, 7, 0, CAST(N'2016-12-23T11:10:55.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2422, N'BGYUUHF             ', N'Goold                                                                                               ', N'Barleyfarmer                                                                                        ', 9, 3, 0, CAST(N'2016-12-23T11:10:55.327' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2423, N'SSFHUTB             ', N'Sludge                                                                                              ', N'Sleek                                                                                               ', 15, 2, 0, CAST(N'2016-12-23T11:10:55.567' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2424, N'DGCUQMI             ', N'Gamgee                                                                                              ', N'Douglas                                                                                             ', 3, 5, 0, CAST(N'2016-12-23T11:10:55.793' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2425, N'DSLUVNB             ', N'Sugarfeather                                                                                        ', N'Dirk                                                                                                ', 52, 6, 0, CAST(N'2016-12-23T11:10:56.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2426, N'PRGIMKB             ', N'Ranald                                                                                              ', N'Piloqutinnguaq                                                                                      ', 12, 1, 0, CAST(N'2016-12-23T11:10:56.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2427, N'AAUNINW             ', N'Aylen                                                                                               ', N'Assassin                                                                                            ', 35, 2, 0, CAST(N'2016-12-23T11:10:56.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2428, N'GPMCHGT             ', N'Peacespirit                                                                                         ', N'Gobnata                                                                                             ', 6, 4, 0, CAST(N'2016-12-23T11:10:56.723' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2429, N'PTJGETS             ', N'T hirih                                                                                             ', N'Pounce                                                                                              ', 21, 6, 0, CAST(N'2016-12-23T11:10:56.963' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2430, N'AGFKWLQ             ', N'Gears                                                                                               ', N'Arcana                                                                                              ', 58, 8, 0, CAST(N'2016-12-23T11:10:57.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2431, N'ZGOMSQB             ', N'Grubb                                                                                               ', N'Za re                                                                                               ', 64, 2, 0, CAST(N'2016-12-23T11:10:57.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2432, N'CARYQOH             ', N'Aylen                                                                                               ', N'Corona                                                                                              ', 38, 5, 0, CAST(N'2016-12-23T11:10:57.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2433, N'RJVWWRL             ', N'Jakeman                                                                                             ', N'Ruairidh                                                                                            ', 7, 1, 0, CAST(N'2016-12-23T11:10:57.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2434, N'MLWCQVT             ', N'Lothran                                                                                             ', N'Matilda                                                                                             ', 70, 7, 0, CAST(N'2016-12-23T11:10:58.153' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2435, N'MARBOTO             ', N'Ally                                                                                                ', N'Mooncheeks                                                                                          ', 18, 2, 0, CAST(N'2016-12-23T11:10:58.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2436, N'PDOXNMA             ', N'Donohoe                                                                                             ', N'Pounce                                                                                              ', 30, 6, 0, CAST(N'2016-12-23T11:10:58.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2437, N'TWXDQTS             ', N'Warrick                                                                                             ', N'Tasgall                                                                                             ', 10, 5, 0, CAST(N'2016-12-23T11:10:58.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2438, N'AFAUVFK             ', N'Force                                                                                               ', N'Aili                                                                                                ', 41, 7, 0, CAST(N'2016-12-23T11:10:59.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2439, N'CMIWRLH             ', N'McNaughton                                                                                          ', N'C emgein                                                                                            ', 4, 8, 0, CAST(N'2016-12-23T11:10:59.303' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2440, N'CAGLHRP             ', N'Andersen                                                                                            ', N'C emgein                                                                                            ', 19, 5, 0, CAST(N'2016-12-23T11:10:59.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2441, N'AGWWLSC             ', N'Goold                                                                                               ', N'Aili                                                                                                ', 36, 6, 0, CAST(N'2016-12-23T11:10:59.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2442, N'GVILXAR             ', N'Vorath                                                                                              ', N'Gears                                                                                               ', 13, 1, 0, CAST(N'2016-12-23T11:11:00.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2443, N'PTBFARE             ', N'Topanga                                                                                             ', N'Potatosower                                                                                         ', 42, 5, 0, CAST(N'2016-12-23T11:11:00.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2444, N'CBIMDDI             ', N'Bolger-Baggins                                                                                      ', N'C emgein                                                                                            ', 5, 4, 0, CAST(N'2016-12-23T11:11:00.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2445, N'GRWFBNT             ', N'Ruairi                                                                                              ', N'Grimalda                                                                                            ', 39, 7, 0, CAST(N'2016-12-23T11:11:00.723' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2446, N'OMDFIGX             ', N'Marika                                                                                              ', N'Overkill                                                                                            ', 33, 6, 0, CAST(N'2016-12-23T11:11:00.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2447, N'RFEXSEW             ', N'Fraser                                                                                              ', N'Robert                                                                                              ', 16, 7, 0, CAST(N'2016-12-23T11:11:01.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2448, N'TSOLVXV             ', N'Scavenger                                                                                           ', N'Trey                                                                                                ', 2, 7, 0, CAST(N'2016-12-23T11:11:01.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2449, N'FKAGDYS             ', N'Kreka                                                                                               ', N'Fluttersheen                                                                                        ', 71, 2, 0, CAST(N'2016-12-23T11:11:01.653' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2450, N'GNMRKUI             ', N'Naira                                                                                               ', N'Grimalda                                                                                            ', 17, 8, 0, CAST(N'2016-12-23T11:11:01.887' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2451, N'DTLTPSA             ', N'T k                                                                                                 ', N'Dina                                                                                                ', 40, 6, 0, CAST(N'2016-12-23T11:11:02.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2452, N'QDMLUEN             ', N'Donohoe                                                                                             ', N'Queen                                                                                               ', 11, 8, 0, CAST(N'2016-12-23T11:11:02.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2453, N'HLRLNYT             ', N'Levy                                                                                                ', N'Hannah                                                                                              ', 20, 8, 0, CAST(N'2016-12-23T11:11:02.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2454, N'SCHGTBX             ', N'Chubb                                                                                               ', N'Sheard                                                                                              ', 28, 2, 0, CAST(N'2016-12-23T11:11:02.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2455, N'CNTSMCD             ', N'Nye                                                                                                 ', N'Cyra                                                                                                ', 14, 1, 0, CAST(N'2016-12-23T11:11:03.073' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2456, N'GFETLWE             ', N'Force                                                                                               ', N'Grapple                                                                                             ', 8, 8, 0, CAST(N'2016-12-23T11:11:03.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2457, N'KGAFCNT             ', N'Golddust                                                                                            ', N'Katariina                                                                                           ', 29, 3, 0, CAST(N'2016-12-23T11:12:05.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2458, N'MBRQTKD             ', N'Blake                                                                                               ', N'Marika                                                                                              ', 9, 8, 0, CAST(N'2016-12-23T11:12:05.640' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2459, N'CMGWGYS             ', N'McCringleberry                                                                                      ', N'Ceallagh                                                                                            ', 15, 6, 0, CAST(N'2016-12-23T11:12:05.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2460, N'GAOTXFD             ', N'Alberts                                                                                             ', N'Gobnata                                                                                             ', 3, 5, 0, CAST(N'2016-12-23T11:12:06.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2461, N'SSITWVT             ', N'Saunders                                                                                            ', N'Snowdance                                                                                           ', 52, 4, 0, CAST(N'2016-12-23T11:12:06.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2462, N'DKBQPHF             ', N'Kristiina                                                                                           ', N'Dolly-Sue                                                                                           ', 12, 2, 0, CAST(N'2016-12-23T11:12:06.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2463, N'CABGNAU             ', N'Amsel                                                                                               ', N'C emgein                                                                                            ', 35, 8, 0, CAST(N'2016-12-23T11:12:06.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2464, N'DGFXUUL             ', N'Glittercloud                                                                                        ', N'Douglas                                                                                             ', 6, 4, 0, CAST(N'2016-12-23T11:12:07.057' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2465, N'ASUOGLC             ', N'Sludge                                                                                              ', N'Assassin                                                                                            ', 21, 8, 0, CAST(N'2016-12-23T11:12:07.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2466, N'MWQOREC             ', N'Warrick                                                                                             ', N'Mari                                                                                                ', 58, 1, 0, CAST(N'2016-12-23T11:12:07.527' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2467, N'MLTILNJ             ', N'Lothran                                                                                             ', N'May                                                                                                 ', 64, 1, 0, CAST(N'2016-12-23T11:12:07.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2468, N'ASENYNG             ', N'Smith                                                                                               ', N'Aili                                                                                                ', 38, 5, 0, CAST(N'2016-12-23T11:12:07.997' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2469, N'AHTBNGV             ', N'Hogpen                                                                                              ', N'Aleksander                                                                                          ', 7, 6, 0, CAST(N'2016-12-23T11:12:08.213' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2470, N'PJFBJHL             ', N'Julitta                                                                                             ', N'Piloqutinnguaq                                                                                      ', 70, 4, 0, CAST(N'2016-12-23T11:12:08.457' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2471, N'PFBITHU             ', N'Fairbairn                                                                                           ', N'Peggy-Rae                                                                                           ', 18, 1, 0, CAST(N'2016-12-23T11:12:08.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2472, N'JVCDXCC             ', N'Viktoria                                                                                            ', N'Jemmy                                                                                               ', 30, 6, 0, CAST(N'2016-12-23T11:12:08.943' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2473, N'GSWECLM             ', N'Smith                                                                                               ', N'Gumphauler                                                                                          ', 10, 1, 0, CAST(N'2016-12-23T11:12:09.193' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2474, N'SMJGAYU             ', N'McBelle                                                                                             ', N'Sacnite                                                                                             ', 41, 4, 0, CAST(N'2016-12-23T11:12:09.447' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2475, N'ASABSCG             ', N'Smith                                                                                               ', N'Arcana                                                                                              ', 4, 1, 0, CAST(N'2016-12-23T11:12:09.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2476, N'WLPWAHC             ', N'Levy                                                                                                ', N'Wingspan                                                                                            ', 19, 8, 0, CAST(N'2016-12-23T11:12:09.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2477, N'HUYXCDE             ', N'Ulalume                                                                                             ', N'Highbrow                                                                                            ', 36, 7, 0, CAST(N'2016-12-23T11:12:10.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2478, N'MAKOTXS             ', N'Aylen                                                                                               ', N'Melissa                                                                                             ', 13, 7, 0, CAST(N'2016-12-23T11:12:10.383' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2479, N'AJYVMHE             ', N'Jacobson                                                                                            ', N'Amanda                                                                                              ', 42, 5, 0, CAST(N'2016-12-23T11:12:10.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2480, N'DGFYLRT             ', N'Grubb                                                                                               ', N'Dolly-Sue                                                                                           ', 5, 1, 0, CAST(N'2016-12-23T11:12:10.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2481, N'JMYEYNI             ', N'MacClelland                                                                                         ', N'Johanna                                                                                             ', 39, 1, 0, CAST(N'2016-12-23T11:12:11.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2482, N'CGMFCJS             ', N'Gears                                                                                               ', N'Ceallagh                                                                                            ', 33, 1, 0, CAST(N'2016-12-23T11:12:11.327' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2483, N'ANPJBJL             ', N'Nita                                                                                                ', N'Annukka                                                                                             ', 16, 4, 0, CAST(N'2016-12-23T11:12:11.560' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2484, N'ASWTBTK             ', N'Siiri                                                                                               ', N'Arnie                                                                                               ', 2, 7, 0, CAST(N'2016-12-23T11:12:11.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2485, N'RSKECQK             ', N'Schmid                                                                                              ', N'Rhoda                                                                                               ', 71, 8, 0, CAST(N'2016-12-23T11:12:12.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2486, N'AAPCQFU             ', N'Aylen                                                                                               ', N'Aloysius                                                                                            ', 17, 5, 0, CAST(N'2016-12-23T11:12:12.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2487, N'APXAVXI             ', N'Proudfoot                                                                                           ', N'Aleksandra                                                                                          ', 40, 6, 0, CAST(N'2016-12-23T11:12:12.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2488, N'HTFMVVG             ', N'T k                                                                                                 ', N'Highbrow                                                                                            ', 11, 4, 0, CAST(N'2016-12-23T11:12:12.723' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2489, N'RGOACMA             ', N'Glittersheen                                                                                        ', N'Rhino                                                                                               ', 20, 7, 0, CAST(N'2016-12-23T11:12:12.963' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2490, N'MKSHVBE             ', N'Kiiskinen                                                                                           ', N'Mira                                                                                                ', 28, 4, 0, CAST(N'2016-12-23T11:12:13.193' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2491, N'JSVODCL             ', N'Seedfarmer                                                                                          ', N'Jeremiah                                                                                            ', 14, 2, 0, CAST(N'2016-12-23T11:12:13.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2492, N'MZIQQPI             ', N'Zuleika                                                                                             ', N'Mira                                                                                                ', 8, 8, 0, CAST(N'2016-12-23T11:12:13.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2493, N'MHRRTED             ', N'Hornblower                                                                                          ', N'Mimosa                                                                                              ', 29, 7, 0, CAST(N'2016-12-23T11:13:24.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2494, N'KBPXEAG             ', N'Badcock                                                                                             ', N'Kermit                                                                                              ', 9, 7, 0, CAST(N'2016-12-23T11:13:25.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2495, N'BVXLUYG             ', N'Viktoria                                                                                            ', N'Blair                                                                                               ', 15, 1, 0, CAST(N'2016-12-23T11:13:25.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2496, N'DKITMFJ             ', N'Kiiskinen                                                                                           ', N'Dietfried                                                                                           ', 3, 1, 0, CAST(N'2016-12-23T11:13:25.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2497, N'AKLFRAK             ', N'Kateri                                                                                              ', N'Assassin                                                                                            ', 52, 2, 0, CAST(N'2016-12-23T11:13:25.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2498, N'ASNUIRA             ', N'Starbeam                                                                                            ', N'Ayelen                                                                                              ', 12, 3, 0, CAST(N'2016-12-23T11:13:26.043' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2499, N'BWOHGTW             ', N'Woods                                                                                               ', N'Belle                                                                                               ', 35, 7, 0, CAST(N'2016-12-23T11:13:26.277' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2500, N'PECRYGD             ', N'Error                                                                                               ', N'Pandora                                                                                             ', 6, 6, 0, CAST(N'2016-12-23T11:13:26.517' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2501, N'HORMVHH             ', N'Ogden                                                                                               ', N'Hingle                                                                                              ', 21, 5, 0, CAST(N'2016-12-23T11:13:26.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2502, N'SHEXMAT             ', N'Hawking                                                                                             ', N'Spud                                                                                                ', 58, 2, 0, CAST(N'2016-12-23T11:13:26.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2503, N'RRRKAAK             ', N'Ranald                                                                                              ', N'Rosa                                                                                                ', 64, 7, 0, CAST(N'2016-12-23T11:13:27.210' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2504, N'CSMCFTI             ', N'Starscream                                                                                          ', N'Ceallagh                                                                                            ', 38, 1, 0, CAST(N'2016-12-23T11:13:27.447' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2505, N'MDJQSOB             ', N'Dulcinea                                                                                            ', N'Mimosa                                                                                              ', 7, 2, 0, CAST(N'2016-12-23T11:13:27.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2506, N'MLTUPAK             ', N'Longhole                                                                                            ', N'Myrtle                                                                                              ', 70, 3, 0, CAST(N'2016-12-23T11:13:27.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2507, N'ODPJEXO             ', N'Dazzlegaze                                                                                          ', N'Outi                                                                                                ', 18, 1, 0, CAST(N'2016-12-23T11:13:28.153' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2508, N'HCSYLSE             ', N'Cosmicmother                                                                                        ', N'Harmony                                                                                             ', 30, 1, 0, CAST(N'2016-12-23T11:13:28.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2509, N'FVQWNQM             ', N'Vorath                                                                                              ', N'Fluttersheen                                                                                        ', 10, 6, 0, CAST(N'2016-12-23T11:13:28.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2510, N'JNOOCAS             ', N'Nye                                                                                                 ', N'Jeremiah                                                                                            ', 41, 1, 0, CAST(N'2016-12-23T11:13:28.873' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2511, N'AWKMGTF             ', N'Warrick                                                                                             ', N'Aili                                                                                                ', 4, 7, 0, CAST(N'2016-12-23T11:13:29.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2512, N'MJOBWOU             ', N'Julitta                                                                                             ', N'Matilda                                                                                             ', 19, 6, 0, CAST(N'2016-12-23T11:13:29.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2513, N'FLPOIOD             ', N'Lothran                                                                                             ', N'Fergus                                                                                              ', 36, 2, 0, CAST(N'2016-12-23T11:13:29.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2514, N'SJOVLXV             ', N'Jeffers                                                                                             ', N'Silverfrost                                                                                         ', 13, 2, 0, CAST(N'2016-12-23T11:13:29.813' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2515, N'HNJOHYM             ', N'Nita                                                                                                ', N'Hingle                                                                                              ', 42, 5, 0, CAST(N'2016-12-23T11:13:30.043' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2516, N'MTQYIVH             ', N'Topanga                                                                                             ', N'Morgen                                                                                              ', 29, 2, 0, CAST(N'2016-12-23T15:00:43.977' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2517, N'MDXBLWH             ', N'Dulcinea                                                                                            ', N'Mirjam                                                                                              ', 9, 8, 0, CAST(N'2016-12-23T15:00:44.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2518, N'MVOAWKQ             ', N'Venom                                                                                               ', N'May                                                                                                 ', 15, 6, 0, CAST(N'2016-12-23T15:00:44.450' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2519, N'OCAIQBR             ', N'Christmas                                                                                           ', N'Overkill                                                                                            ', 3, 5, 0, CAST(N'2016-12-23T15:00:44.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2520, N'GMQPIQC             ', N'Marika                                                                                              ', N'Gobnata                                                                                             ', 52, 2, 0, CAST(N'2016-12-23T15:00:44.927' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2521, N'PRAOIDE             ', N'Roxelana                                                                                            ', N'Pounce                                                                                              ', 12, 6, 0, CAST(N'2016-12-23T15:00:45.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2522, N'MAEQQVI             ', N'Age                                                                                                 ', N'Myrtle                                                                                              ', 35, 5, 0, CAST(N'2016-12-23T15:00:45.393' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2523, N'RMNNQKQ             ', N'McBelle                                                                                             ', N'Rhino                                                                                               ', 6, 8, 0, CAST(N'2016-12-23T15:00:45.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2524, N'CDURHOS             ', N'Donnchadh                                                                                           ', N'Chickenchaser                                                                                       ', 21, 4, 0, CAST(N'2016-12-23T15:00:45.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2525, N'JHKKEOK             ', N'Hofmann                                                                                             ', N'Jellygleam                                                                                          ', 58, 1, 0, CAST(N'2016-12-23T15:00:46.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2526, N'SQRKCET             ', N'Quickmoon                                                                                           ', N'Sweetwing                                                                                           ', 64, 4, 0, CAST(N'2016-12-23T15:00:46.333' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2527, N'RLXWPPV             ', N'Leavitt                                                                                             ', N'Rosa                                                                                                ', 38, 5, 0, CAST(N'2016-12-23T15:00:46.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2528, N'CHPWODJ             ', N'Hogpen                                                                                              ', N'Ceallagh                                                                                            ', 7, 2, 0, CAST(N'2016-12-23T15:00:46.823' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2529, N'AAAFWUU             ', N'Age                                                                                                 ', N'Aloysius                                                                                            ', 70, 4, 0, CAST(N'2016-12-23T15:00:47.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2530, N'SONBAQC             ', N'Optimus                                                                                             ', N'Sean                                                                                                ', 18, 5, 0, CAST(N'2016-12-23T15:00:47.307' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2531, N'GHQWIKV             ', N'Hogpen                                                                                              ', N'Goldshy                                                                                             ', 30, 7, 0, CAST(N'2016-12-23T15:00:47.547' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2532, N'RACTXVE             ', N'Aylen                                                                                               ', N'Rosa                                                                                                ', 10, 6, 0, CAST(N'2016-12-23T15:00:47.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2533, N'DSWEGUJ             ', N'Sparklemoon                                                                                         ', N'Dirk                                                                                                ', 41, 5, 0, CAST(N'2016-12-23T15:00:48.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2534, N'SLIVJCY             ', N'Larivaara                                                                                           ', N'Savanna                                                                                             ', 4, 2, 0, CAST(N'2016-12-23T15:00:48.253' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2535, N'MSNQHDE             ', N'Sherman                                                                                             ', N'Mooncheeks                                                                                          ', 19, 6, 0, CAST(N'2016-12-23T15:00:48.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2536, N'SKOYRGY             ', N'Kreka                                                                                               ', N'Scotty                                                                                              ', 36, 4, 0, CAST(N'2016-12-23T15:00:48.743' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2537, N'RSVXWYH             ', N'Scavenger                                                                                           ', N'Ross                                                                                                ', 13, 2, 0, CAST(N'2016-12-23T15:00:48.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2538, N'MWULUTW             ', N'Woods                                                                                               ', N'Mira                                                                                                ', 42, 3, 0, CAST(N'2016-12-23T15:00:49.237' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2539, N'CKLTLQH             ', N'Kaisa                                                                                               ', N'C emgein                                                                                            ', 5, 3, 0, CAST(N'2016-12-23T15:00:49.483' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2540, N'LSMILRD             ', N'Sugarkiss                                                                                           ', N'Loyd                                                                                                ', 39, 6, 0, CAST(N'2016-12-23T15:00:49.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2541, N'LBIHHKN             ', N'Bolger                                                                                              ', N'Lalla                                                                                               ', 33, 1, 0, CAST(N'2016-12-23T15:00:49.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2542, N'PZSPLWK             ', N'Zaragamba                                                                                           ', N'Pansy                                                                                               ', 16, 7, 0, CAST(N'2016-12-23T15:00:50.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2543, N'GNXCHSJ             ', N'Nita                                                                                                ', N'Gigglering                                                                                          ', 2, 5, 0, CAST(N'2016-12-23T15:00:50.447' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2544, N'GSGLNIQ             ', N'Sigrid                                                                                              ', N'Grimalda                                                                                            ', 71, 3, 0, CAST(N'2016-12-23T15:00:50.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2545, N'FDEFFSJ             ', N'Donohoe                                                                                             ', N'Flitterstar                                                                                         ', 17, 8, 0, CAST(N'2016-12-23T15:00:50.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2546, N'FBBDOQV             ', N'Brandagamba                                                                                         ', N'Fluttersheen                                                                                        ', 40, 7, 0, CAST(N'2016-12-23T15:00:51.177' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2547, N'ASBDYHD             ', N'Smallburrow                                                                                         ', N'Ailpein                                                                                             ', 11, 3, 0, CAST(N'2016-12-23T15:00:51.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2548, N'SKQPKCM             ', N'Koenig                                                                                              ', N'Scotty                                                                                              ', 20, 6, 0, CAST(N'2016-12-23T15:00:51.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2549, N'CGMAXHO             ', N'Gentlemoon                                                                                          ', N'Carbry                                                                                              ', 28, 1, 0, CAST(N'2016-12-23T15:00:51.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2550, N'TMFPOEB             ', N'McGently                                                                                            ', N'Tiia                                                                                                ', 14, 1, 0, CAST(N'2016-12-23T15:00:52.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2551, N'SMUWEWF             ', N'Meissner                                                                                            ', N'Savanna                                                                                             ', 8, 4, 0, CAST(N'2016-12-23T15:00:52.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2552, N'JFFAXRG             ', N'Fraser                                                                                              ', N'Johanna                                                                                             ', 29, 1, 0, CAST(N'2016-12-23T16:00:39.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2553, N'LJPHKKW             ', N'Julitta                                                                                             ', N'Lalla                                                                                               ', 9, 6, 0, CAST(N'2016-12-23T16:00:39.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2554, N'AAHEMAE             ', N'Anthonyson                                                                                          ', N'Atomic                                                                                              ', 15, 7, 0, CAST(N'2016-12-23T16:00:40.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2555, N'JHFVJJS             ', N'Hofmann                                                                                             ', N'Jellygleam                                                                                          ', 3, 3, 0, CAST(N'2016-12-23T16:00:40.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2556, N'MRUIUSI             ', N'Rock                                                                                                ', N'Mooncheeks                                                                                          ', 52, 8, 0, CAST(N'2016-12-23T16:00:40.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2557, N'AAVPXRF             ', N'Ally                                                                                                ', N'Ayelen                                                                                              ', 12, 1, 0, CAST(N'2016-12-23T16:00:40.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2558, N'RQSSMMD             ', N'Quickleaf                                                                                           ', N'Rowan                                                                                               ', 35, 6, 0, CAST(N'2016-12-23T16:00:41.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2559, N'VMJSIHF             ', N'Mirjam                                                                                              ', N'Victor                                                                                              ', 6, 8, 0, CAST(N'2016-12-23T16:00:41.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2560, N'HSRQRHE             ', N'Stone                                                                                               ', N'Hingle                                                                                              ', 21, 5, 0, CAST(N'2016-12-23T16:00:41.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2561, N'ACSKAPQ             ', N'Cosmicmother                                                                                        ', N'Ayelen                                                                                              ', 58, 1, 0, CAST(N'2016-12-23T16:00:41.907' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2562, N'AMBAADE             ', N'Mirjam                                                                                              ', N'Alodia                                                                                              ', 64, 2, 0, CAST(N'2016-12-23T16:00:42.157' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2563, N'MPQSEHS             ', N'Prowl                                                                                               ', N'Methoataske                                                                                         ', 38, 1, 0, CAST(N'2016-12-23T16:00:42.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2564, N'PMUGVXW             ', N'Maoilios                                                                                            ', N'Potatosower                                                                                         ', 7, 8, 0, CAST(N'2016-12-23T16:00:42.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2565, N'RSDAEDD             ', N'Saunders                                                                                            ', N'Robert                                                                                              ', 70, 6, 0, CAST(N'2016-12-23T16:00:42.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2566, N'RNIGFWB             ', N'Nevin                                                                                               ', N'Ross                                                                                                ', 18, 8, 0, CAST(N'2016-12-23T16:00:43.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2567, N'PFYPAAT             ', N'Fraser                                                                                              ', N'Peggy-Rae                                                                                           ', 30, 7, 0, CAST(N'2016-12-23T16:00:43.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2568, N'CBKMAHC             ', N'Badcock                                                                                             ', N'Ceallagh                                                                                            ', 10, 5, 0, CAST(N'2016-12-23T16:00:43.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2569, N'KHMNCGF             ', N'Hanley                                                                                              ', N'Kermit                                                                                              ', 41, 5, 0, CAST(N'2016-12-23T16:00:44.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2570, N'PSSAWCE             ', N'Sandheaver                                                                                          ', N'Pandora                                                                                             ', 4, 5, 0, CAST(N'2016-12-23T16:00:44.393' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2571, N'AWMOHVQ             ', N'Wheeljack                                                                                           ', N'Alasdair                                                                                            ', 19, 7, 0, CAST(N'2016-12-23T16:00:44.903' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2572, N'PGKENTA             ', N'Glittersheen                                                                                        ', N'Pansy                                                                                               ', 36, 4, 0, CAST(N'2016-12-23T16:00:45.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2573, N'HEUFEIL             ', N'Error                                                                                               ', N'Hingle                                                                                              ', 13, 4, 0, CAST(N'2016-12-23T16:00:45.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2574, N'DAOJSVO             ', N'Ally                                                                                                ', N'Donnamira                                                                                           ', 42, 8, 0, CAST(N'2016-12-23T16:00:45.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2575, N'AAHCDLL             ', N'Animal                                                                                              ', N'Arcana                                                                                              ', 5, 5, 0, CAST(N'2016-12-23T16:00:45.873' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2576, N'BSAGJCM             ', N'Spacespirit                                                                                         ', N'Bertram                                                                                             ', 39, 3, 0, CAST(N'2016-12-23T16:00:46.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2577, N'MGFHUFV             ', N'Gears                                                                                               ', N'Myrtle                                                                                              ', 33, 1, 0, CAST(N'2016-12-23T16:00:46.353' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2578, N'AHEGDIX             ', N'Hawking                                                                                             ', N'Ayelen                                                                                              ', 16, 6, 0, CAST(N'2016-12-23T16:00:46.593' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2579, N'BSXLVJO             ', N'Sackville                                                                                           ', N'Beeatriks                                                                                           ', 2, 3, 0, CAST(N'2016-12-23T16:00:46.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2580, N'KWNHVJF             ', N'Wheeljack                                                                                           ', N'Katariina                                                                                           ', 71, 8, 0, CAST(N'2016-12-23T16:00:47.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2581, N'NADTXYN             ', N'Animal                                                                                              ', N'Nina                                                                                                ', 17, 6, 0, CAST(N'2016-12-23T16:00:47.323' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2582, N'RMEQCMH             ', N'McCringleberry                                                                                      ', N'Rollo                                                                                               ', 40, 6, 0, CAST(N'2016-12-23T16:00:47.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2583, N'DSAUHWO             ', N'Sugarkiss                                                                                           ', N'Dazzledust                                                                                          ', 11, 8, 0, CAST(N'2016-12-23T16:00:47.827' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2584, N'HLLEDKS             ', N'Lightfoot                                                                                           ', N'Hingle                                                                                              ', 20, 2, 0, CAST(N'2016-12-23T16:00:48.077' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2585, N'PJGYKOD             ', N'J rvinen                                                                                            ', N'Prisca                                                                                              ', 28, 7, 0, CAST(N'2016-12-23T16:00:48.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2586, N'HGNUGCJ             ', N'Gentlemoon                                                                                          ', N'Haidee                                                                                              ', 14, 3, 0, CAST(N'2016-12-23T16:00:48.560' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2587, N'ANHHWGI             ', N'Naira                                                                                               ', N'Arlen                                                                                               ', 8, 8, 0, CAST(N'2016-12-23T16:00:48.793' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2588, N'RSXEDOE             ', N'Smith                                                                                               ', N'Ruairidh                                                                                            ', 29, 7, 0, CAST(N'2016-12-23T17:00:43.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2589, N'ESKUIVR             ', N'Seedfarmer                                                                                          ', N'Emmi                                                                                                ', 9, 5, 0, CAST(N'2016-12-23T17:00:43.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2590, N'MGWUWKO             ', N'Gentlemoon                                                                                          ', N'Mooncheeks                                                                                          ', 15, 7, 0, CAST(N'2016-12-23T17:00:43.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2591, N'TMYRCJC             ', N'Moongaze                                                                                            ', N'Tiia                                                                                                ', 3, 2, 0, CAST(N'2016-12-23T17:00:44.177' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2592, N'RFAJRYR             ', N'Fraser                                                                                              ', N'Ruairidh                                                                                            ', 52, 4, 0, CAST(N'2016-12-23T17:00:44.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2593, N'NABRIAV             ', N'Amsel                                                                                               ', N'Nydia                                                                                               ', 12, 1, 0, CAST(N'2016-12-23T17:00:44.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2594, N'HBHEHSS             ', N'Blitzwing                                                                                           ', N'Harmony                                                                                             ', 35, 6, 0, CAST(N'2016-12-23T17:00:44.893' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2595, N'MROMKQL             ', N'Ranald                                                                                              ', N'Mimosa                                                                                              ', 6, 5, 0, CAST(N'2016-12-23T17:00:45.133' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2596, N'ASCEILK             ', N'Schmid                                                                                              ', N'Angelica                                                                                            ', 21, 3, 0, CAST(N'2016-12-23T17:00:45.373' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2597, N'DGVHNUF             ', N'Goold                                                                                               ', N'Dietfried                                                                                           ', 58, 7, 0, CAST(N'2016-12-23T17:00:45.610' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2598, N'RBSTNXL             ', N'Bolger                                                                                              ', N'Rhoda                                                                                               ', 64, 5, 0, CAST(N'2016-12-23T17:00:45.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2599, N'APYJYWE             ', N'Pocahontas                                                                                          ', N'Ayelen                                                                                              ', 38, 2, 0, CAST(N'2016-12-23T17:00:46.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2600, N'LSKPKUS             ', N'Snowfeather                                                                                         ', N'Lalia                                                                                               ', 7, 3, 0, CAST(N'2016-12-23T17:00:46.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2601, N'KKLERTJ             ', N'Kaisa                                                                                               ', N'Katariina                                                                                           ', 70, 3, 0, CAST(N'2016-12-23T17:00:46.607' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2602, N'KLYQOFY             ', N'Larivaara                                                                                           ', N'Kateri                                                                                              ', 18, 4, 0, CAST(N'2016-12-23T17:00:46.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2603, N'THAFPSN             ', N'Hanley                                                                                              ', N'Terje                                                                                               ', 30, 2, 0, CAST(N'2016-12-23T17:00:47.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2604, N'HKPQFXW             ', N'Koenig                                                                                              ', N'Hannah                                                                                              ', 10, 7, 0, CAST(N'2016-12-23T17:00:47.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2605, N'OBMKWLM             ', N'Bolger-Baggins                                                                                      ', N'Oatchaser                                                                                           ', 41, 7, 0, CAST(N'2016-12-23T17:00:47.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2606, N'PJYHAJO             ', N'Jazz                                                                                                ', N'Potatosower                                                                                         ', 4, 2, 0, CAST(N'2016-12-23T17:00:47.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2607, N'REXVEUF             ', N'Error                                                                                               ', N'Rosa                                                                                                ', 19, 3, 0, CAST(N'2016-12-23T17:00:48.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2608, N'KGTDCSO             ', N'Graves                                                                                              ', N'Kadri                                                                                               ', 36, 5, 0, CAST(N'2016-12-23T17:00:48.313' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2609, N'KRCEWYD             ', N'Ra                                                                                                  ', N'Knut                                                                                                ', 13, 3, 0, CAST(N'2016-12-23T17:00:48.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2610, N'EAHSYHX             ', N'Age                                                                                                 ', N'Emmi                                                                                                ', 42, 6, 0, CAST(N'2016-12-23T17:00:48.817' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2611, N'TSIJVRM             ', N'School                                                                                              ', N'Tasgall                                                                                             ', 5, 7, 0, CAST(N'2016-12-23T17:00:49.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2612, N'PHWJRLC             ', N'Hornblower                                                                                          ', N'Perceptor                                                                                           ', 39, 7, 0, CAST(N'2016-12-23T17:00:49.303' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2613, N'PGQOHQV             ', N'Grubb                                                                                               ', N'Potatosower                                                                                         ', 33, 1, 0, CAST(N'2016-12-23T17:00:49.553' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2614, N'HGHGWBL             ', N'Goldworthy                                                                                          ', N'Henna                                                                                               ', 16, 6, 0, CAST(N'2016-12-23T17:00:49.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2615, N'EODJAJS             ', N'Optimus                                                                                             ', N'Everild                                                                                             ', 2, 8, 0, CAST(N'2016-12-23T17:00:50.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2616, N'SSQBJIN             ', N'Studwick                                                                                            ', N'Sweetstar                                                                                           ', 71, 6, 0, CAST(N'2016-12-23T17:00:50.323' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2617, N'OSRIMVQ             ', N'Sugarkiss                                                                                           ', N'Oatchaser                                                                                           ', 17, 6, 0, CAST(N'2016-12-23T17:00:50.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2618, N'LJLSSJT             ', N'Julitta                                                                                             ', N'Loviise                                                                                             ', 40, 2, 0, CAST(N'2016-12-23T17:00:50.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2619, N'MGXQQPG             ', N'Grubb                                                                                               ', N'May                                                                                                 ', 11, 2, 0, CAST(N'2016-12-23T17:00:51.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2620, N'MPPCJXO             ', N'Potatochaser                                                                                        ', N'Mirjam                                                                                              ', 20, 7, 0, CAST(N'2016-12-23T17:00:51.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2621, N'SSLLMTS             ', N'Schmid                                                                                              ', N'Scotty                                                                                              ', 28, 8, 0, CAST(N'2016-12-23T17:00:51.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2622, N'ASEFGXN             ', N'Scavenger                                                                                           ', N'Amanda                                                                                              ', 14, 1, 0, CAST(N'2016-12-23T17:00:51.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2623, N'GBSVBHS             ', N'Blake                                                                                               ', N'Grimalda                                                                                            ', 8, 3, 0, CAST(N'2016-12-23T17:00:52.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2624, N'SEAOGFP             ', N'Error                                                                                               ', N'Sacnite                                                                                             ', 29, 5, 0, CAST(N'2016-12-30T05:33:52.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2625, N'MSINEYV             ', N'Sureshot                                                                                            ', N'Maimu                                                                                               ', 9, 1, 0, CAST(N'2016-12-30T05:33:52.423' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2626, N'HSVVLHS             ', N'Sureshot                                                                                            ', N'Henna                                                                                               ', 15, 7, 0, CAST(N'2016-12-30T05:33:52.660' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2627, N'HQBIJWB             ', N'Quickberry                                                                                          ', N'Harmony                                                                                             ', 3, 6, 0, CAST(N'2016-12-30T05:33:52.887' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2628, N'DLQKKNI             ', N'Lothran                                                                                             ', N'Diamond                                                                                             ', 52, 4, 0, CAST(N'2016-12-30T05:33:53.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2629, N'NNUGYIJ             ', N'Nita                                                                                                ', N'Nydia                                                                                               ', 12, 2, 0, CAST(N'2016-12-30T05:33:53.323' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2630, N'PHFLTEF             ', N'Hietamies                                                                                           ', N'Pandora                                                                                             ', 35, 1, 0, CAST(N'2016-12-30T05:33:53.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2631, N'LCCMNUQ             ', N'Clarkson                                                                                            ', N'Lightspeed                                                                                          ', 6, 4, 0, CAST(N'2016-12-30T05:33:53.763' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2632, N'RCXBKCR             ', N'Cyra                                                                                                ', N'Rosa                                                                                                ', 21, 7, 0, CAST(N'2016-12-30T05:33:53.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2633, N'CGPAJMQ             ', N'Grubb                                                                                               ', N'Ceallagh                                                                                            ', 58, 2, 0, CAST(N'2016-12-30T05:33:54.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2634, N'GTFOJEO             ', N'T hirih                                                                                             ', N'Grapple                                                                                             ', 64, 3, 0, CAST(N'2016-12-30T05:33:54.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2635, N'SGRDADW             ', N'Goldworthy                                                                                          ', N'Scotty                                                                                              ', 38, 2, 0, CAST(N'2016-12-30T05:33:54.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2636, N'SBQCTBN             ', N'Blake                                                                                               ', N'Sacnite                                                                                             ', 7, 1, 0, CAST(N'2016-12-30T05:33:54.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2637, N'PFUEQPD             ', N'Flutternose                                                                                         ', N'Phoenix                                                                                             ', 70, 3, 0, CAST(N'2016-12-30T05:33:55.073' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2638, N'CCCFKOE             ', N'Cyra                                                                                                ', N'Corona                                                                                              ', 18, 4, 0, CAST(N'2016-12-30T05:33:55.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2639, N'DGEXTWR             ', N'Gentlemoon                                                                                          ', N'Devastator                                                                                          ', 30, 2, 0, CAST(N'2016-12-30T05:33:55.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2640, N'GSFRYEC             ', N'Sugarfeather                                                                                        ', N'Gears                                                                                               ', 10, 5, 0, CAST(N'2016-12-30T05:33:55.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2641, N'CAMTDDI             ', N'Ally                                                                                                ', N'Crazy                                                                                               ', 41, 4, 0, CAST(N'2016-12-30T05:33:55.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2642, N'CNCVLRH             ', N'Nevin                                                                                               ', N'Chickenfarmer                                                                                       ', 4, 8, 0, CAST(N'2016-12-30T05:33:56.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2643, N'TBMJOAD             ', N'Bunce                                                                                               ', N'Trey                                                                                                ', 19, 4, 0, CAST(N'2016-12-30T05:33:56.343' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2644, N'PKYPGAA             ', N'Kaisa                                                                                               ', N'Pigplanter                                                                                          ', 36, 4, 0, CAST(N'2016-12-30T05:33:56.573' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2645, N'KGLPKPK             ', N'Gears                                                                                               ', N'Kadri                                                                                               ', 13, 3, 0, CAST(N'2016-12-30T05:33:56.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2646, N'LEDSLYC             ', N'Error                                                                                               ', N'Lightspeed                                                                                          ', 42, 1, 0, CAST(N'2016-12-30T05:33:57.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2647, N'RLFLSGC             ', N'Lightfoot                                                                                           ', N'Rein                                                                                                ', 5, 4, 0, CAST(N'2016-12-30T05:33:57.227' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2648, N'SSCSFRN             ', N'Sandheaver                                                                                          ', N'Silverfrost                                                                                         ', 39, 7, 0, CAST(N'2016-12-30T05:33:57.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2649, N'MMDXHFL             ', N'McBelle                                                                                             ', N'Melissa                                                                                             ', 33, 2, 0, CAST(N'2016-12-30T05:33:57.660' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2650, N'PPDQQPA             ', N'Proudfoot                                                                                           ', N'Perceptor                                                                                           ', 16, 8, 0, CAST(N'2016-12-30T05:33:57.873' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2651, N'SLTTPYD             ', N'Lightfoot                                                                                           ', N'Scotty                                                                                              ', 2, 4, 0, CAST(N'2016-12-30T05:33:58.097' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2652, N'HGEGMET             ', N'Griffin                                                                                             ', N'Hingle                                                                                              ', 71, 3, 0, CAST(N'2016-12-30T05:33:58.307' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2653, N'MCIHNTS             ', N'Chubb                                                                                               ', N'Mooncheeks                                                                                          ', 17, 4, 0, CAST(N'2016-12-30T05:33:58.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2654, N'MIYTLRA             ', N'Iomhar                                                                                              ', N'Marika                                                                                              ', 40, 3, 0, CAST(N'2016-12-30T05:33:58.733' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2655, N'NHQJURS             ', N'Hanley                                                                                              ', N'Nydia                                                                                               ', 11, 8, 0, CAST(N'2016-12-30T05:33:58.947' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2656, N'SMUJIPP             ', N'McCringleberry                                                                                      ', N'Sweetwing                                                                                           ', 20, 4, 0, CAST(N'2016-12-30T05:33:59.147' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2657, N'ACHXCXG             ', N'Cosmicmother                                                                                        ', N'Annukka                                                                                             ', 28, 4, 0, CAST(N'2016-12-30T05:33:59.380' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2658, N'MRWUKSF             ', N'Rock                                                                                                ', N'Mira                                                                                                ', 14, 8, 0, CAST(N'2016-12-30T05:33:59.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2659, N'EMGPSWR             ', N'Manninen                                                                                            ', N'Emmi                                                                                                ', 8, 5, 0, CAST(N'2016-12-30T05:33:59.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2660, N'VSJSHSN             ', N'Stone                                                                                               ', N'Victor                                                                                              ', 29, 8, 0, CAST(N'2016-12-30T05:41:52.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2661, N'RAWPJTD             ', N'Animal                                                                                              ', N'Rhino                                                                                               ', 9, 2, 0, CAST(N'2016-12-30T05:41:52.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2662, N'MAQMTLJ             ', N'Aylen                                                                                               ', N'Maitland                                                                                            ', 15, 3, 0, CAST(N'2016-12-30T05:41:53.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2663, N'OMLOQHV             ', N'McGently                                                                                            ', N'Oatchaser                                                                                           ', 3, 6, 0, CAST(N'2016-12-30T05:41:53.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2664, N'MQLUDIR             ', N'Quickmoon                                                                                           ', N'Mira                                                                                                ', 52, 8, 0, CAST(N'2016-12-30T05:41:53.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2665, N'PFHUCYN             ', N'Fairbairn                                                                                           ', N'Phoenix                                                                                             ', 12, 8, 0, CAST(N'2016-12-30T05:41:53.853' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2666, N'TSVHDJY             ', N'School                                                                                              ', N'Tiia                                                                                                ', 35, 3, 0, CAST(N'2016-12-30T05:41:54.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2667, N'CMGIQLE             ', N'Moongaze                                                                                            ', N'Ceallagh                                                                                            ', 6, 7, 0, CAST(N'2016-12-30T05:41:54.297' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2668, N'AQQAKHM             ', N'Quickberry                                                                                          ', N'Atomic                                                                                              ', 21, 6, 0, CAST(N'2016-12-30T05:41:54.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2669, N'HHRBLEP             ', N'Hornblower                                                                                          ', N'Harmony                                                                                             ', 58, 2, 0, CAST(N'2016-12-30T05:41:54.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2670, N'RMXQDHS             ', N'MacClelland                                                                                         ', N'Robert                                                                                              ', 64, 8, 0, CAST(N'2016-12-30T05:41:54.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2671, N'JANMCVN             ', N'Aylen                                                                                               ', N'Johanna                                                                                             ', 38, 7, 0, CAST(N'2016-12-30T05:41:55.167' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2672, N'LTTGHXT             ', N'T hirih                                                                                             ', N'Lalia                                                                                               ', 7, 2, 0, CAST(N'2016-12-30T05:41:55.383' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2673, N'JIFOBHO             ', N'Ibbott                                                                                              ', N'Jellygleam                                                                                          ', 70, 1, 0, CAST(N'2016-12-30T05:41:55.600' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2674, N'AGNVWCK             ', N'Glitterfluff                                                                                        ', N'Alfred                                                                                              ', 18, 2, 0, CAST(N'2016-12-30T05:41:55.813' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2675, N'MHHTVAQ             ', N'Hagstr m                                                                                            ', N'Mari                                                                                                ', 30, 6, 0, CAST(N'2016-12-30T05:41:56.023' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2676, N'CSDPUTL             ', N'Starbeam                                                                                            ', N'Chickenfarmer                                                                                       ', 10, 8, 0, CAST(N'2016-12-30T05:41:56.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2677, N'DQWTHJU             ', N'Quickberry                                                                                          ', N'Dirk                                                                                                ', 41, 8, 0, CAST(N'2016-12-30T05:41:56.627' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2678, N'JAGFVYS             ', N'Ally                                                                                                ', N'Joyce                                                                                               ', 4, 4, 0, CAST(N'2016-12-30T05:41:56.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2679, N'PSQRNBK             ', N'Sackville                                                                                           ', N'Phoenix                                                                                             ', 19, 8, 0, CAST(N'2016-12-30T05:41:57.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2680, N'CMSDJDX             ', N'Moongaze                                                                                            ', N'C emgein                                                                                            ', 36, 4, 0, CAST(N'2016-12-30T05:41:57.433' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2681, N'TSIERYG             ', N'Smith                                                                                               ', N'Twinkleleaf                                                                                         ', 13, 8, 0, CAST(N'2016-12-30T05:41:57.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2682, N'EKFKDJV             ', N'Keith                                                                                               ', N'Emmi                                                                                                ', 42, 2, 0, CAST(N'2016-12-30T05:41:58.227' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2683, N'PHVFMAV             ', N'Headstrong                                                                                          ', N'Punch                                                                                               ', 5, 2, 0, CAST(N'2016-12-30T05:41:58.447' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2684, N'HGXFUXN             ', N'Gears                                                                                               ', N'Harmony                                                                                             ', 39, 4, 0, CAST(N'2016-12-30T05:41:58.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2685, N'RSCFCPF             ', N'Sugarfeather                                                                                        ', N'Ruairidh                                                                                            ', 33, 3, 0, CAST(N'2016-12-30T05:41:58.883' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2686, N'GSFGNHW             ', N'Spacespirit                                                                                         ', N'Grimalda                                                                                            ', 16, 2, 0, CAST(N'2016-12-30T05:41:59.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2687, N'MHBCTUC             ', N'Hawking                                                                                             ', N'Methoataske                                                                                         ', 2, 1, 0, CAST(N'2016-12-30T05:41:59.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2688, N'PKERLLU             ', N'Kreka                                                                                               ', N'Potatosower                                                                                         ', 71, 6, 0, CAST(N'2016-12-30T05:41:59.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2689, N'DSDVKIA             ', N'Starbeam                                                                                            ', N'Dina                                                                                                ', 17, 6, 0, CAST(N'2016-12-30T05:41:59.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2690, N'GMUIKRL             ', N'MacClelland                                                                                         ', N'Goldshy                                                                                             ', 40, 1, 0, CAST(N'2016-12-30T05:42:00.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2691, N'LBSTEWO             ', N'Badcock                                                                                             ', N'Lightspeed                                                                                          ', 11, 5, 0, CAST(N'2016-12-30T05:42:00.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2692, N'AJATVPX             ', N'Jazz                                                                                                ', N'Arlen                                                                                               ', 20, 2, 0, CAST(N'2016-12-30T05:42:00.447' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2693, N'SBHBEJO             ', N'Blake                                                                                               ', N'Sweetwing                                                                                           ', 28, 7, 0, CAST(N'2016-12-30T05:42:00.660' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2694, N'RGFUIOT             ', N'Gently                                                                                              ', N'Robert                                                                                              ', 14, 3, 0, CAST(N'2016-12-30T05:42:00.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2695, N'SSWPBSJ             ', N'Sugarkiss                                                                                           ', N'Snowdance                                                                                           ', 8, 1, 0, CAST(N'2016-12-30T05:42:01.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2696, N'CSNVNQT             ', N'Scourge                                                                                             ', N'Cyra                                                                                                ', 29, 4, 0, CAST(N'2016-12-30T05:49:13.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2697, N'GKKFWTH             ', N'Koenig                                                                                              ', N'Gears                                                                                               ', 9, 8, 0, CAST(N'2016-12-30T05:49:13.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2698, N'SHWFWVS             ', N'Hawking                                                                                             ', N'Sweetwing                                                                                           ', 15, 2, 0, CAST(N'2016-12-30T05:49:14.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2699, N'AOWACQF             ', N'Ogden                                                                                               ', N'Amanda                                                                                              ', 3, 1, 0, CAST(N'2016-12-30T05:49:14.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2700, N'RZNIMIT             ', N'Zaragamba                                                                                           ', N'Ross                                                                                                ', 52, 3, 0, CAST(N'2016-12-30T05:49:14.527' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2701, N'RSKFXVK             ', N'Sulin                                                                                               ', N'Riina                                                                                               ', 12, 3, 0, CAST(N'2016-12-30T05:49:14.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2702, N'PKBRXJF             ', N'Kaisa                                                                                               ', N'Pipaluk                                                                                             ', 35, 4, 0, CAST(N'2016-12-30T05:49:14.973' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2703, N'PGIVTMO             ', N'Griffin                                                                                             ', N'Punch                                                                                               ', 6, 5, 0, CAST(N'2016-12-30T05:49:15.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2704, N'DZOTWOR             ', N'Zuleika                                                                                             ', N'Douglas                                                                                             ', 21, 6, 0, CAST(N'2016-12-30T05:49:15.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2705, N'ALCYPCV             ', N'Lightfoot                                                                                           ', N'Arcana                                                                                              ', 58, 7, 0, CAST(N'2016-12-30T05:49:15.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2706, N'AJFIBWL             ', N'Julitta                                                                                             ', N'Aloysius                                                                                            ', 64, 5, 0, CAST(N'2016-12-30T05:49:15.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2707, N'APOKONY             ', N'Proudfoot                                                                                           ', N'Assassin                                                                                            ', 38, 3, 0, CAST(N'2016-12-30T05:49:16.057' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2708, N'ZRHWAPD             ', N'Ruairi                                                                                              ', N'Za re                                                                                               ', 7, 3, 0, CAST(N'2016-12-30T05:49:16.267' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2709, N'PCDPLRD             ', N'Cringleberry                                                                                        ', N'Pipaluk                                                                                             ', 70, 3, 0, CAST(N'2016-12-30T05:49:16.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2710, N'SAFQYII             ', N'Alberts                                                                                             ', N'Sheard                                                                                              ', 18, 6, 0, CAST(N'2016-12-30T05:49:16.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2711, N'KCYBKNB             ', N'Carbrey                                                                                             ', N'Kim                                                                                                 ', 30, 3, 0, CAST(N'2016-12-30T05:49:16.907' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2712, N'SAHTSMS             ', N'Andersen                                                                                            ', N'Sweetwing                                                                                           ', 10, 8, 0, CAST(N'2016-12-30T05:49:17.127' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2713, N'MSOUFOH             ', N'Smith                                                                                               ', N'Matilda                                                                                             ', 41, 6, 0, CAST(N'2016-12-30T05:49:17.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2714, N'ASYFOCT             ', N'Sparklemoon                                                                                         ', N'Ayelen                                                                                              ', 4, 1, 0, CAST(N'2016-12-30T05:49:17.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2715, N'DGXFGAV             ', N'Gently                                                                                              ', N'Dina                                                                                                ', 19, 4, 0, CAST(N'2016-12-30T05:49:17.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2716, N'SDRNQIX             ', N'Dulcinea                                                                                            ', N'Silvernose                                                                                          ', 36, 2, 0, CAST(N'2016-12-30T05:49:18.003' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2717, N'ABKPFHD             ', N'Blake                                                                                               ', N'Anna                                                                                                ', 13, 1, 0, CAST(N'2016-12-30T05:49:18.220' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2718, N'JPTCFPU             ', N'Potatochaser                                                                                        ', N'Johanna                                                                                             ', 42, 3, 0, CAST(N'2016-12-30T05:49:18.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2719, N'CJSLCVS             ', N'J rvinen                                                                                            ', N'Chickenchaser                                                                                       ', 5, 4, 0, CAST(N'2016-12-30T05:49:18.640' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2720, N'ESFIPFJ             ', N'Sigrid                                                                                              ', N'Everild                                                                                             ', 39, 3, 0, CAST(N'2016-12-30T05:49:18.847' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2721, N'DTGHSWP             ', N'Topanga                                                                                             ', N'Daisy                                                                                               ', 33, 5, 0, CAST(N'2016-12-30T05:49:19.053' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2722, N'WVOPDJR             ', N'Viktoria                                                                                            ', N'Webster                                                                                             ', 16, 8, 0, CAST(N'2016-12-30T05:49:19.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2723, N'GPMYLCM             ', N'Peacespirit                                                                                         ', N'Gobnata                                                                                             ', 2, 4, 0, CAST(N'2016-12-30T05:49:19.483' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2724, N'LFIPJXO             ', N'Fraser                                                                                              ', N'Lavinia                                                                                             ', 71, 4, 0, CAST(N'2016-12-30T05:49:19.693' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2725, N'EDDNROA             ', N'Donohoe                                                                                             ', N'Everild                                                                                             ', 17, 5, 0, CAST(N'2016-12-30T05:49:19.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2726, N'CJTRIEG             ', N'Jacobson                                                                                            ', N'Corona                                                                                              ', 40, 3, 0, CAST(N'2016-12-30T05:49:20.127' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2727, N'PBDITAG             ', N'Badcock                                                                                             ', N'Pipaluk                                                                                             ', 11, 8, 0, CAST(N'2016-12-30T05:49:20.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2728, N'JPGHCLN             ', N'Prowl                                                                                               ', N'Jeremiah                                                                                            ', 20, 8, 0, CAST(N'2016-12-30T05:49:20.557' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2729, N'JGEFKUT             ', N'Grubb                                                                                               ', N'Jessamine                                                                                           ', 28, 6, 0, CAST(N'2016-12-30T05:49:20.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2730, N'EVPAUAY             ', N'Venom                                                                                               ', N'Elsdon                                                                                              ', 14, 7, 0, CAST(N'2016-12-30T05:49:21.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2731, N'SSIBKHD             ', N'Simpkin                                                                                             ', N'Sally                                                                                               ', 8, 4, 0, CAST(N'2016-12-30T05:49:21.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2732, N'CSFJMPC             ', N'Spacespirit                                                                                         ', N'Crush                                                                                               ', 29, 6, 0, CAST(N'2016-12-30T05:56:59.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2733, N'RVFAPFX             ', N'Vorath                                                                                              ', N'Ross                                                                                                ', 9, 5, 0, CAST(N'2016-12-30T05:57:00.133' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2734, N'TCWCBFQ             ', N'Chubb-Baggins                                                                                       ', N'Tasgall                                                                                             ', 15, 3, 0, CAST(N'2016-12-30T05:57:00.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2735, N'GKSCJCK             ', N'Kaisa                                                                                               ', N'Gumphauler                                                                                          ', 3, 6, 0, CAST(N'2016-12-30T05:57:00.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2736, N'TGQMASH             ', N'Golddust                                                                                            ', N'Twinkleleaf                                                                                         ', 52, 2, 0, CAST(N'2016-12-30T05:57:00.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2737, N'ALUEPBU             ', N'Leavitt                                                                                             ', N'Aili                                                                                                ', 12, 1, 0, CAST(N'2016-12-30T05:57:01.007' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2738, N'DMXVGTM             ', N'McBelle                                                                                             ', N'Devastator                                                                                          ', 35, 2, 0, CAST(N'2016-12-30T05:57:01.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2739, N'SVGTFII             ', N'Vorath                                                                                              ', N'Sweetstar                                                                                           ', 6, 4, 0, CAST(N'2016-12-30T05:57:01.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2740, N'PGLVYBT             ', N'Glittercloud                                                                                        ', N'Powerglide                                                                                          ', 21, 5, 0, CAST(N'2016-12-30T05:57:01.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2741, N'OSJBNOM             ', N'Scourge                                                                                             ', N'Octane                                                                                              ', 58, 7, 0, CAST(N'2016-12-30T05:57:01.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2742, N'DKNIAYY             ', N'Koenig                                                                                              ', N'Defensor                                                                                            ', 64, 1, 0, CAST(N'2016-12-30T05:57:02.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2743, N'WABAILH             ', N'Animal                                                                                              ', N'Wingspan                                                                                            ', 38, 1, 0, CAST(N'2016-12-30T05:57:02.270' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2744, N'OLQHGLW             ', N'Longhole                                                                                            ', N'Oatchaser                                                                                           ', 7, 2, 0, CAST(N'2016-12-30T05:57:02.477' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2745, N'ZCDUBTY             ', N'Carbrey                                                                                             ', N'Zyanya                                                                                              ', 70, 2, 0, CAST(N'2016-12-30T05:57:02.687' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2746, N'LROEOVG             ', N'Ra                                                                                                  ', N'Lavinia                                                                                             ', 18, 3, 0, CAST(N'2016-12-30T05:57:02.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2747, N'ABWBGHM             ', N'Biceps                                                                                              ', N'Arnie                                                                                               ', 30, 2, 0, CAST(N'2016-12-30T05:57:03.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2748, N'DLSHKEH             ', N'Levy                                                                                                ', N'Douglas                                                                                             ', 10, 2, 0, CAST(N'2016-12-30T05:57:03.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2749, N'DSGWCFJ             ', N'Saunders                                                                                            ', N'Douglas                                                                                             ', 41, 4, 0, CAST(N'2016-12-30T05:57:03.553' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2750, N'UIMEKLQ             ', N'Iomhar                                                                                              ', N'Ultra                                                                                               ', 4, 1, 0, CAST(N'2016-12-30T05:57:03.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2751, N'BSBHWIA             ', N'Smith                                                                                               ', N'Bob                                                                                                 ', 19, 3, 0, CAST(N'2016-12-30T05:57:04.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2752, N'QMJEPBC             ', N'Miles                                                                                               ', N'Queen                                                                                               ', 36, 8, 0, CAST(N'2016-12-30T05:57:04.220' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2753, N'BMNRING             ', N'McRae                                                                                               ', N'Blair                                                                                               ', 13, 5, 0, CAST(N'2016-12-30T05:57:04.433' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2754, N'GGQFGSC             ', N'Gears                                                                                               ', N'Gerda                                                                                               ', 42, 8, 0, CAST(N'2016-12-30T05:57:04.657' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2755, N'HMSHVDD             ', N'McKenzie                                                                                            ', N'Hannah                                                                                              ', 5, 3, 0, CAST(N'2016-12-30T05:57:04.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2756, N'AICMTHF             ', N'Itzel                                                                                               ', N'Alodia                                                                                              ', 39, 3, 0, CAST(N'2016-12-30T05:57:05.083' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2757, N'ZQJTWHJ             ', N'Quickleaf                                                                                           ', N'Za re                                                                                               ', 33, 2, 0, CAST(N'2016-12-30T05:57:05.297' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2758, N'MDYFVVH             ', N'Donohoe                                                                                             ', N'May                                                                                                 ', 16, 2, 0, CAST(N'2016-12-30T05:57:05.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2759, N'OGYOQVD             ', N'Goold                                                                                               ', N'Oatchaser                                                                                           ', 2, 2, 0, CAST(N'2016-12-30T05:57:05.727' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2760, N'ACBRRRS             ', N'Christmas                                                                                           ', N'Arabella                                                                                            ', 71, 8, 0, CAST(N'2016-12-30T05:57:05.933' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2761, N'ABJQJFR             ', N'Bolger                                                                                              ', N'Ailpein                                                                                             ', 17, 7, 0, CAST(N'2016-12-30T05:57:06.147' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2762, N'MBNSXCM             ', N'Bunce                                                                                               ', N'Myrtle                                                                                              ', 40, 7, 0, CAST(N'2016-12-30T05:57:06.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2763, N'VBTYJFB             ', N'Badcock                                                                                             ', N'Victor                                                                                              ', 11, 3, 0, CAST(N'2016-12-30T05:57:06.567' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2764, N'JPUGKLO             ', N'Philomel                                                                                            ', N'Joyce                                                                                               ', 20, 3, 0, CAST(N'2016-12-30T05:57:06.793' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2765, N'SONLXMF             ', N'Optimus                                                                                             ', N'Sleek                                                                                               ', 28, 3, 0, CAST(N'2016-12-30T05:57:07.003' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2766, N'KLTJKOE             ', N'Longhole                                                                                            ', N'Kerr                                                                                                ', 14, 4, 0, CAST(N'2016-12-30T05:57:07.237' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2767, N'AFILUQE             ', N'Force                                                                                               ', N'Alasdair                                                                                            ', 8, 3, 0, CAST(N'2016-12-30T05:57:07.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2768, N'VBDRBAV             ', N'Brown                                                                                               ', N'Viktoria                                                                                            ', 3, 2, 0, CAST(N'2017-01-01T15:48:54.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2769, N'MLFGMIJ             ', N'Levy                                                                                                ', N'Mooncheeks                                                                                          ', 38, 3, 0, CAST(N'2017-01-01T20:23:21.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2770, N'PLUANUS             ', N'Leelo                                                                                               ', N'Phoenix                                                                                             ', 8, 4, 0, CAST(N'2017-01-01T20:23:26.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2771, N'CBAJGBR             ', N'Badcock                                                                                             ', N'Clearkiss                                                                                           ', 17, 1, 0, CAST(N'2017-01-01T20:23:42.157' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2772, N'PSMIMEA             ', N'Scavenger                                                                                           ', N'Powerglide                                                                                          ', 29, 5, 0, CAST(N'2017-01-01T21:37:53.627' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2773, N'JSAYXTO             ', N'Siiri                                                                                               ', N'Jellygleam                                                                                          ', 9, 4, 0, CAST(N'2017-01-01T21:39:26.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2774, N'SMWFXVG             ', N'Manninen                                                                                            ', N'Sheard                                                                                              ', 29, 5, 0, CAST(N'2017-01-01T21:43:46.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2775, N'MVEAFXY             ', N'Venom                                                                                               ', N'Marika                                                                                              ', 9, 7, 0, CAST(N'2017-01-01T21:44:07.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2776, N'DBNNRDO             ', N'Blitzwing                                                                                           ', N'Dina                                                                                                ', 15, 4, 0, CAST(N'2017-01-01T21:44:22.933' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2777, N'DGYLNXU             ', N'Glittersheen                                                                                        ', N'Dazzledust                                                                                          ', 3, 2, 0, CAST(N'2017-01-01T21:44:45.003' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2778, N'FGSKOKD             ', N'Goldworthy                                                                                          ', N'Forest                                                                                              ', 52, 8, 0, CAST(N'2017-01-01T21:44:46.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2779, N'MTNPXUS             ', N'T hirih                                                                                             ', N'May                                                                                                 ', 12, 3, 0, CAST(N'2017-01-01T21:44:52.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2780, N'GPWQEGF             ', N'Prowl                                                                                               ', N'Goldshy                                                                                             ', 35, 7, 0, CAST(N'2017-01-01T21:44:52.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2781, N'ASWTXXL             ', N'Smith                                                                                               ', N'Arnie                                                                                               ', 6, 8, 0, CAST(N'2017-01-01T21:44:52.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2782, N'KLPMRCU             ', N'Leavitt                                                                                             ', N'Knut                                                                                                ', 21, 3, 0, CAST(N'2017-01-01T21:44:53.253' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2783, N'BFTOEXB             ', N'Fraser                                                                                              ', N'Beeatriks                                                                                           ', 58, 1, 0, CAST(N'2017-01-01T21:44:53.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2784, N'GBGWLJL             ', N'Blitzwing                                                                                           ', N'Gears                                                                                               ', 64, 7, 0, CAST(N'2017-01-01T21:44:54.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2785, N'AJHEXOP             ', N'J rvinen                                                                                            ', N'Amanda                                                                                              ', 38, 4, 0, CAST(N'2017-01-01T21:44:55.483' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2786, N'ACHWWWA             ', N'Chubb                                                                                               ', N'Arlen                                                                                               ', 7, 3, 0, CAST(N'2017-01-01T21:44:56.827' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2787, N'VJQQYHX             ', N'Jacobson                                                                                            ', N'Victor                                                                                              ', 70, 7, 0, CAST(N'2017-01-01T21:44:57.190' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2788, N'GMRNJIF             ', N'Miles                                                                                               ', N'Gobnata                                                                                             ', 18, 5, 0, CAST(N'2017-01-01T21:44:57.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2789, N'LACDVHY             ', N'Aylen                                                                                               ', N'Loviise                                                                                             ', 30, 3, 0, CAST(N'2017-01-01T21:44:57.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2790, N'KKEQCXE             ', N'Koenig                                                                                              ', N'Kerr                                                                                                ', 10, 6, 0, CAST(N'2017-01-01T21:44:58.167' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2791, N'KBIPKKE             ', N'Brandagamba                                                                                         ', N'Kadri                                                                                               ', 41, 7, 0, CAST(N'2017-01-01T21:44:58.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2792, N'SJQYRFH             ', N'Jacobson                                                                                            ', N'Shaw                                                                                                ', 4, 5, 0, CAST(N'2017-01-01T21:44:58.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2793, N'HMSLYMV             ', N'Mirjam                                                                                              ', N'Harmony                                                                                             ', 19, 1, 0, CAST(N'2017-01-01T21:44:59.220' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2794, N'ARKAXLH             ', N'Ranald                                                                                              ', N'Assassin                                                                                            ', 36, 4, 0, CAST(N'2017-01-01T21:44:59.533' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2795, N'CJTLWXM             ', N'Junge                                                                                               ', N'Crush                                                                                               ', 13, 2, 0, CAST(N'2017-01-01T21:44:59.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2796, N'DSVMIBC             ', N'Siiri                                                                                               ', N'Dina                                                                                                ', 42, 8, 0, CAST(N'2017-01-01T21:45:00.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2797, N'SKJDJCA             ', N'Koenig                                                                                              ', N'Savanna                                                                                             ', 5, 6, 0, CAST(N'2017-01-01T21:45:00.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2798, N'CHUJODT             ', N'Hagstr m                                                                                            ', N'Corona                                                                                              ', 39, 3, 0, CAST(N'2017-01-01T21:45:00.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2799, N'TACNTNR             ', N'Age                                                                                                 ', N'Tasgall                                                                                             ', 33, 8, 0, CAST(N'2017-01-01T21:45:01.167' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2800, N'MRVTVXU             ', N'Rock                                                                                                ', N'May                                                                                                 ', 16, 6, 0, CAST(N'2017-01-01T21:45:01.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2801, N'DLERYUU             ', N'Larivaara                                                                                           ', N'Dirk                                                                                                ', 2, 4, 0, CAST(N'2017-01-01T21:45:01.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2802, N'OHJOWWB             ', N'Hietamies                                                                                           ', N'Oatchaser                                                                                           ', 71, 7, 0, CAST(N'2017-01-01T21:45:02.147' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2803, N'OHYDWMY             ', N'Hawking                                                                                             ', N'Outi                                                                                                ', 17, 1, 0, CAST(N'2017-01-01T21:45:02.477' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2804, N'ZOESCDL             ', N'Ogden                                                                                               ', N'Zyanya                                                                                              ', 40, 4, 0, CAST(N'2017-01-01T21:45:02.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2805, N'LSYMPNB             ', N'Starscream                                                                                          ', N'Lavinia                                                                                             ', 11, 3, 0, CAST(N'2017-01-01T21:45:03.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2806, N'PGHFKUV             ', N'Goold                                                                                               ', N'Pansy                                                                                               ', 20, 1, 0, CAST(N'2017-01-01T21:45:03.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2807, N'SMWGVDP             ', N'McSpuddy                                                                                            ', N'Silverfrost                                                                                         ', 28, 5, 0, CAST(N'2017-01-01T21:45:03.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2808, N'TNHJDCC             ', N'Nita                                                                                                ', N'Trey                                                                                                ', 14, 4, 0, CAST(N'2017-01-01T21:45:04.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2809, N'LNDPTIU             ', N'Nita                                                                                                ', N'Lalla                                                                                               ', 8, 8, 0, CAST(N'2017-01-01T21:45:04.450' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2813, N'PMJDKTN             ', N'Miles                                                                                               ', N'Pollyanna                                                                                           ', 18, 4, 0, CAST(N'2017-01-05T06:46:54.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2814, N'PQYTQRH             ', N'Quickberry                                                                                          ', N'Pigplanter                                                                                          ', 6, 5, 0, CAST(N'2017-01-05T06:46:55.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2815, N'OSUABVW             ', N'Smith                                                                                               ', N'Octane                                                                                              ', 5, 2, 0, CAST(N'2017-01-05T06:46:56.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2816, N'EMNRDOJ             ', N'Maoilios                                                                                            ', N'Elsdon                                                                                              ', 52, 8, 0, CAST(N'2017-01-05T06:46:58.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2817, N'MMFPMRC             ', N'Mirjam                                                                                              ', N'Melissa                                                                                             ', 58, 7, 0, CAST(N'2017-01-05T06:47:00.723' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2822, N'FMNTNRW             ', N'McKenzie                                                                                            ', N'Forest                                                                                              ', 3, 6, 0, CAST(N'2017-01-05T06:47:08.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2823, N'ATEGUJO             ', N'T k                                                                                                 ', N'Annukka                                                                                             ', 41, 8, 0, CAST(N'2017-01-05T06:47:09.947' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2824, N'SSCDLJO             ', N'Smith                                                                                               ', N'Sean                                                                                                ', 13, 8, 0, CAST(N'2017-01-05T06:47:11.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2825, N'CAMMILR             ', N'Andersen                                                                                            ', N'C emgein                                                                                            ', 15, 2, 0, CAST(N'2017-01-05T06:47:12.557' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2826, N'GAUCLFR             ', N'Animal                                                                                              ', N'Gentlegleam                                                                                         ', 29, 8, 0, CAST(N'2017-01-05T06:47:13.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2828, N'KMBFWPC             ', N'Miles                                                                                               ', N'Kerr                                                                                                ', 30, 7, 0, CAST(N'2017-01-05T06:47:16.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2829, N'HIJFRLX             ', N'Ibbott                                                                                              ', N'Harmony                                                                                             ', 8, 1, 0, CAST(N'2017-01-05T06:47:17.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2830, N'BHSKEUA             ', N'Hietamies                                                                                           ', N'Barleyfarmer                                                                                        ', 16, 7, 0, CAST(N'2017-01-05T06:47:18.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2831, N'MSECPNP             ', N'Spacespirit                                                                                         ', N'Myrtle                                                                                              ', 20, 8, 0, CAST(N'2017-01-05T06:47:19.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2832, N'ANUCTNM             ', N'Nevin                                                                                               ', N'Arabella                                                                                            ', 35, 1, 0, CAST(N'2017-01-05T06:47:21.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2833, N'DSLIFUA             ', N'School                                                                                              ', N'Dirk                                                                                                ', 36, 1, 0, CAST(N'2017-01-05T06:47:22.190' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2834, N'TSFXFTM             ', N'Smith                                                                                               ', N'Trey                                                                                                ', 39, 1, 0, CAST(N'2017-01-05T06:47:23.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2835, N'RSQSGUD             ', N'Snowfeather                                                                                         ', N'Rhino                                                                                               ', 14, 6, 0, CAST(N'2017-01-05T06:47:24.173' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2836, N'BRCREVY             ', N'Roxelana                                                                                            ', N'Blair                                                                                               ', 4, 5, 0, CAST(N'2017-01-05T06:47:25.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2837, N'AHQUQRD             ', N'Hornblower                                                                                          ', N'Angelica                                                                                            ', 21, 5, 0, CAST(N'2017-01-05T06:47:27.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2839, N'CDYSJKI             ', N'Donohoe                                                                                             ', N'Ceallagh                                                                                            ', 19, 4, 0, CAST(N'2017-01-05T06:47:30.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2840, N'ODHYYFH             ', N'Dulcinea                                                                                            ', N'Overkill                                                                                            ', 70, 1, 0, CAST(N'2017-01-05T06:47:33.237' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2841, N'DSQMKLV             ', N'Schmid                                                                                              ', N'Dirk                                                                                                ', 9, 5, 0, CAST(N'2017-01-05T06:47:34.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2842, N'SSSMTFF             ', N'Saraste                                                                                             ', N'Silvernose                                                                                          ', 10, 5, 0, CAST(N'2017-01-05T06:47:35.657' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2843, N'OBBKEXB             ', N'Bunce                                                                                               ', N'Octane                                                                                              ', 12, 4, 0, CAST(N'2017-01-05T06:47:37.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2844, N'GPBCDLB             ', N'Potatochaser                                                                                        ', N'Goldstar                                                                                            ', 28, 1, 0, CAST(N'2017-01-05T06:47:39.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2845, N'LWYJEYM             ', N'Warrick                                                                                             ', N'Lalla                                                                                               ', 2, 4, 0, CAST(N'2017-01-05T06:47:40.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2846, N'ESQJLDO             ', N'Spacespirit                                                                                         ', N'Eugene                                                                                              ', 17, 1, 0, CAST(N'2017-01-05T06:47:43.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2847, N'ANICYEC             ', N'Nye                                                                                                 ', N'Anna                                                                                                ', 11, 2, 0, CAST(N'2017-01-05T06:47:44.743' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2848, N'ABHURUY             ', N'Biceps                                                                                              ', N'Aurel                                                                                               ', 33, 4, 0, CAST(N'2017-01-05T06:47:45.600' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2849, N'RDGWVNO             ', N'Donohoe                                                                                             ', N'Rosa                                                                                                ', 64, 6, 0, CAST(N'2017-01-05T06:47:46.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2850, N'KKNWFVE             ', N'Koenig                                                                                              ', N'Kadri                                                                                               ', 40, 4, 0, CAST(N'2017-01-05T06:47:48.873' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2851, N'DCXXEAH             ', N'Christmas                                                                                           ', N'Dietfried                                                                                           ', 7, 4, 0, CAST(N'2017-01-05T06:47:54.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2852, N'TTCYLGO             ', N'Topanga                                                                                             ', N'Twinkleleaf                                                                                         ', 42, 3, 0, CAST(N'2017-01-05T06:48:01.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2853, N'AGBNNOO             ', N'Gears                                                                                               ', N'Arlen                                                                                               ', 38, 3, 0, CAST(N'2017-01-05T06:48:07.293' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2854, N'CENEKRP             ', N'Error                                                                                               ', N'Carbry                                                                                              ', 71, 2, 0, CAST(N'2017-01-05T06:48:11.817' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2856, N'RKNBHVX             ', N'Kristiina                                                                                           ', N'Rowan                                                                                               ', 11, 8, 0, CAST(N'2017-01-05T07:05:43.377' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2857, N'TGQHJDC             ', N'Golddust                                                                                            ', N'Twinkleberry                                                                                        ', 30, 1, 0, CAST(N'2017-01-05T07:05:44.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2858, N'AZJSPLW             ', N'Zaragamba                                                                                           ', N'Aloysius                                                                                            ', 21, 4, 0, CAST(N'2017-01-05T07:05:45.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2859, N'MHVBDOQ             ', N'Hofmann                                                                                             ', N'Maitland                                                                                            ', 58, 7, 0, CAST(N'2017-01-05T07:05:46.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2860, N'MNMSWOI             ', N'Nye                                                                                                 ', N'Marika                                                                                              ', 33, 4, 0, CAST(N'2017-01-05T07:05:47.393' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2868, N'APEINPX             ', N'Proudfoot                                                                                           ', N'Angelica                                                                                            ', 6, 7, 0, CAST(N'2017-01-05T07:06:16.607' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2869, N'DWXLWYD             ', N'Whitfoot                                                                                            ', N'Dina                                                                                                ', 40, 5, 0, CAST(N'2017-01-05T07:06:17.377' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2870, N'KSEHGWL             ', N'Sureshot                                                                                            ', N'Kim                                                                                                 ', 3, 3, 0, CAST(N'2017-01-05T07:06:18.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2871, N'GCWAHOA             ', N'Chubb                                                                                               ', N'Gears                                                                                               ', 52, 8, 0, CAST(N'2017-01-05T07:06:19.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2872, N'LMIQCDV             ', N'Marika                                                                                              ', N'Loviise                                                                                             ', 9, 3, 0, CAST(N'2017-01-05T07:06:20.547' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2875, N'CKVJCYD             ', N'Kateri                                                                                              ', N'Ceallagh                                                                                            ', 64, 8, 0, CAST(N'2017-01-05T07:06:25.297' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2876, N'WQPNBHV             ', N'Quickleaf                                                                                           ', N'Wingspan                                                                                            ', 36, 8, 0, CAST(N'2017-01-05T07:06:26.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2877, N'SDTLQHJ             ', N'Dazzlegaze                                                                                          ', N'Sofia                                                                                               ', 7, 2, 0, CAST(N'2017-01-05T07:06:26.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2878, N'QADXJSP             ', N'Andersen                                                                                            ', N'Queen                                                                                               ', 12, 4, 0, CAST(N'2017-01-05T07:06:27.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2879, N'AALAVBD             ', N'Anthonyson                                                                                          ', N'Almira                                                                                              ', 38, 5, 0, CAST(N'2017-01-05T07:06:29.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2880, N'KSKCMSW             ', N'Sigrid                                                                                              ', N'Knut                                                                                                ', 10, 5, 0, CAST(N'2017-01-05T07:06:29.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2881, N'BEWPCUW             ', N'Error                                                                                               ', N'Blair                                                                                               ', 8, 2, 0, CAST(N'2017-01-05T07:06:30.817' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2882, N'SIFOSOE             ', N'Iomhar                                                                                              ', N'Sheard                                                                                              ', 41, 6, 0, CAST(N'2017-01-05T07:06:32.763' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2883, N'RHWUWXY             ', N'Hawking                                                                                             ', N'Rhino                                                                                               ', 5, 6, 0, CAST(N'2017-01-05T07:06:34.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2884, N'MAUDEYN             ', N'Allsopp                                                                                             ', N'Mirjam                                                                                              ', 35, 4, 0, CAST(N'2017-01-05T07:06:37.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2885, N'CSJBBFI             ', N'Saraste                                                                                             ', N'Cyra                                                                                                ', 20, 1, 0, CAST(N'2017-01-05T07:06:38.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2886, N'HLNNWBY             ', N'Levy                                                                                                ', N'Henna                                                                                               ', 18, 6, 0, CAST(N'2017-01-05T07:06:39.547' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2887, N'DMMJSDT             ', N'McBelle                                                                                             ', N'Diamond                                                                                             ', 4, 8, 0, CAST(N'2017-01-05T07:06:40.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2888, N'CMQAKOB             ', N'Maoilios                                                                                            ', N'Chickenchaser                                                                                       ', 29, 4, 0, CAST(N'2017-01-05T07:06:41.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2889, N'AKAFVTL             ', N'Kaisa                                                                                               ', N'Annukka                                                                                             ', 70, 4, 0, CAST(N'2017-01-05T07:06:44.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2890, N'MBHAHQX             ', N'Badcock                                                                                             ', N'Mimosa                                                                                              ', 13, 6, 0, CAST(N'2017-01-05T07:06:45.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2891, N'MSOHQMJ             ', N'Starscream                                                                                          ', N'Methoataske                                                                                         ', 42, 5, 0, CAST(N'2017-01-05T07:06:48.237' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2894, N'PUCRIDO             ', N'Ulalume                                                                                             ', N'Peggy-Rae                                                                                           ', 39, 4, 0, CAST(N'2017-01-05T07:06:52.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2895, N'PJJIBFY             ', N'Jakeman                                                                                             ', N'Pollyanna                                                                                           ', 2, 4, 0, CAST(N'2017-01-05T07:06:53.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2896, N'KSEJGVD             ', N'Starbeam                                                                                            ', N'Kermit                                                                                              ', 71, 1, 0, CAST(N'2017-01-05T07:06:54.653' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2897, N'BWJICGH             ', N'Warrick                                                                                             ', N'Blair                                                                                               ', 15, 3, 0, CAST(N'2017-01-05T07:06:59.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2898, N'DMKBTIE             ', N'McSpuddy                                                                                            ', N'Donnamira                                                                                           ', 16, 2, 0, CAST(N'2017-01-05T07:07:01.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2899, N'SKBHGIP             ', N'Koenig                                                                                              ', N'Sofia                                                                                               ', 14, 2, 0, CAST(N'2017-01-05T07:07:02.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2900, N'MAIOQTG             ', N'Animal                                                                                              ', N'Maitland                                                                                            ', 28, 4, 0, CAST(N'2017-01-05T07:07:04.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2901, N'JPKVTGU             ', N'Prowl                                                                                               ', N'Jeremiah                                                                                            ', 19, 2, 0, CAST(N'2017-01-05T07:07:06.353' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2915, N'CJOKAXL             ', N'Jeffers                                                                                             ', N'Crush                                                                                               ', 3, 3, 0, CAST(N'2017-01-05T07:09:44.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2916, N'SSCWPWO             ', N'Simpkin                                                                                             ', N'Snowdance                                                                                           ', 42, 2, 0, CAST(N'2017-01-05T07:09:45.517' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2917, N'FMQCNTN             ', N'McRae                                                                                               ', N'Fergus                                                                                              ', 12, 6, 0, CAST(N'2017-01-05T07:09:46.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2918, N'DSULWEG             ', N'Smith                                                                                               ', N'Dolly-Sue                                                                                           ', 8, 7, 0, CAST(N'2017-01-05T07:09:47.420' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2919, N'OSSCDLJ             ', N'Stone                                                                                               ', N'Octane                                                                                              ', 33, 5, 0, CAST(N'2017-01-05T07:09:48.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2920, N'MHLUTWG             ', N'Hagstr m                                                                                            ', N'Matilda                                                                                             ', 41, 8, 0, CAST(N'2017-01-05T07:09:49.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2921, N'ASTIUYI             ', N'Sigrid                                                                                              ', N'Ayelen                                                                                              ', 18, 3, 0, CAST(N'2017-01-05T07:09:50.523' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2922, N'SMHSJNL             ', N'Meissner                                                                                            ', N'Sacnite                                                                                             ', 9, 8, 0, CAST(N'2017-01-05T07:09:51.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2925, N'BQFKJBE             ', N'Quickleaf                                                                                           ', N'Bertram                                                                                             ', 7, 6, 0, CAST(N'2017-01-05T07:09:54.333' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2926, N'PSBBEJK             ', N'Saraste                                                                                             ', N'Pipaluk                                                                                             ', 11, 6, 0, CAST(N'2017-01-05T07:11:14.803' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2951, N'HGRLXAB             ', N'Griffin                                                                                             ', N'Herbie                                                                                              ', 36, 3, 0, CAST(N'2017-01-05T08:48:51.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2952, N'AREUAVN             ', N'Rock                                                                                                ', N'Aili                                                                                                ', 13, 2, 0, CAST(N'2017-01-05T08:48:53.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2953, N'HSPNPXN             ', N'Schuler                                                                                             ', N'Harmony                                                                                             ', 38, 3, 0, CAST(N'2017-01-05T08:48:54.737' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2955, N'SGKQHCA             ', N'Graves                                                                                              ', N'Sally                                                                                               ', 5, 6, 0, CAST(N'2017-01-05T08:48:57.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2956, N'LBJHVNV             ', N'Breakdown                                                                                           ', N'Loviise                                                                                             ', 3, 8, 0, CAST(N'2017-01-05T08:48:59.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2959, N'DRDQEBL             ', N'Roxelana                                                                                            ', N'Dazzledust                                                                                          ', 9, 7, 0, CAST(N'2017-01-05T08:49:04.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2961, N'TAKBVVO             ', N'Anthonyson                                                                                          ', N'Titania                                                                                             ', 52, 2, 0, CAST(N'2017-01-05T08:49:07.567' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2963, N'ASWJBQN             ', N'Sherman                                                                                             ', N'Almira                                                                                              ', 16, 5, 0, CAST(N'2017-01-05T08:49:10.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2964, N'TKXUVPA             ', N'Koenig                                                                                              ', N'Twinkleberry                                                                                        ', 2, 2, 0, CAST(N'2017-01-05T08:49:12.767' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2965, N'RBJHYYF             ', N'Biceps                                                                                              ', N'Rhoda                                                                                               ', 19, 3, 0, CAST(N'2017-01-05T08:49:14.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2966, N'PGJDQMK             ', N'Gently                                                                                              ', N'Piloqutinnguaq                                                                                      ', 8, 4, 0, CAST(N'2017-01-05T08:49:15.907' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2967, N'DMTVSMT             ', N'Moongaze                                                                                            ', N'Dirk                                                                                                ', 14, 2, 0, CAST(N'2017-01-05T08:49:18.367' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2968, N'SMGDOKY             ', N'MacClelland                                                                                         ', N'Snowdance                                                                                           ', 64, 2, 0, CAST(N'2017-01-05T08:49:19.827' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2969, N'FPTUNPV             ', N'Paasivirta                                                                                          ', N'Fergus                                                                                              ', 17, 3, 0, CAST(N'2017-01-05T08:49:21.380' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2970, N'ASCOMER             ', N'Smallburrow                                                                                         ', N'Alasdair                                                                                            ', 35, 1, 0, CAST(N'2017-01-05T08:49:23.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2971, N'HSFFXRM             ', N'Simpkin                                                                                             ', N'Hingle                                                                                              ', 70, 2, 0, CAST(N'2017-01-05T08:49:25.447' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2972, N'AZSFFRU             ', N'Zaragamba                                                                                           ', N'Atomic                                                                                              ', 7, 5, 0, CAST(N'2017-01-05T08:49:27.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2973, N'PBPMWOF             ', N'Badcock                                                                                             ', N'Peggy-Rae                                                                                           ', 15, 1, 0, CAST(N'2017-01-05T08:49:31.363' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2974, N'KCYPMQC             ', N'Cyra                                                                                                ', N'Kermit                                                                                              ', 42, 2, 0, CAST(N'2017-01-05T08:49:33.803' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2975, N'ARTUIYX             ', N'Ra                                                                                                  ', N'Ayelen                                                                                              ', 29, 5, 0, CAST(N'2017-01-05T08:49:36.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2976, N'GARSNGN             ', N'Albert                                                                                              ', N'Gobnata                                                                                             ', 30, 8, 0, CAST(N'2017-01-05T08:49:37.560' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2977, N'KTFVELL             ', N'T k                                                                                                 ', N'Knut                                                                                                ', 33, 2, 0, CAST(N'2017-01-05T08:49:39.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2978, N'SCYYCJB             ', N'Cyra                                                                                                ', N'Savanna                                                                                             ', 58, 5, 0, CAST(N'2017-01-05T08:49:40.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2979, N'TKBDBHG             ', N'Kaisa                                                                                               ', N'Tasgall                                                                                             ', 71, 3, 0, CAST(N'2017-01-05T08:49:46.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2981, N'RSAGKVT             ', N'Saunders                                                                                            ', N'Rowan                                                                                               ', 21, 3, 0, CAST(N'2017-01-05T08:49:52.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2982, N'HKXXGWM             ', N'Klowee                                                                                              ', N'Haidee                                                                                              ', 4, 1, 0, CAST(N'2017-01-05T08:49:54.733' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2983, N'SAHTKBV             ', N'Albert                                                                                              ', N'Sally                                                                                               ', 10, 4, 0, CAST(N'2017-01-05T08:49:57.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2984, N'HSYUINX             ', N'Scavenger                                                                                           ', N'Hannah                                                                                              ', 39, 3, 0, CAST(N'2017-01-05T08:49:59.397' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2985, N'DGNCPOM             ', N'Graves                                                                                              ', N'Double                                                                                              ', 6, 5, 0, CAST(N'2017-01-05T08:50:00.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2986, N'EKKMPMH             ', N'Koenig                                                                                              ', N'Eugene                                                                                              ', 40, 8, 0, CAST(N'2017-01-05T08:50:06.220' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2987, N'MCWXEWA             ', N'Christmas                                                                                           ', N'Mari                                                                                                ', 12, 3, 0, CAST(N'2017-01-05T08:50:20.947' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2988, N'HSMMAUA             ', N'Sparklemoon                                                                                         ', N'Herbie                                                                                              ', 18, 1, 0, CAST(N'2017-01-05T08:52:24.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2990, N'JMDEFFS             ', N'Miles                                                                                               ', N'Joyce                                                                                               ', 11, 3, 0, CAST(N'2017-01-05T08:52:43.317' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2991, N'DBODWXT             ', N'Breakdown                                                                                           ', N'Dina                                                                                                ', 41, 3, 0, CAST(N'2017-01-05T08:53:09.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2992, N'RSQCUED             ', N'Simpkin                                                                                             ', N'Rhino                                                                                               ', 20, 4, 0, CAST(N'2017-01-05T08:53:26.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (2993, N'ATSXHBK             ', N'T k                                                                                                 ', N'Atomic                                                                                              ', 28, 7, 0, CAST(N'2017-01-05T08:53:29.253' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3025, N'HSYNMQL             ', N'Studwick                                                                                            ', N'Henna                                                                                               ', 5, 8, 0, CAST(N'2017-01-05T08:58:10.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3027, N'EGWBYQU             ', N'Glitterfluff                                                                                        ', N'Eugene                                                                                              ', 17, 6, 0, CAST(N'2017-01-05T08:58:12.973' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3029, N'RWKOBLQ             ', N'Warrick                                                                                             ', N'Ruairidh                                                                                            ', 21, 7, 0, CAST(N'2017-01-05T08:58:14.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3032, N'HSALDDX             ', N'Sempers                                                                                             ', N'Hingle                                                                                              ', 35, 7, 0, CAST(N'2017-01-05T08:58:17.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3033, N'HSMXHJJ             ', N'Spacespirit                                                                                         ', N'Hingle                                                                                              ', 58, 3, 0, CAST(N'2017-01-05T08:58:18.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3034, N'MLEQFTJ             ', N'Lightfoot                                                                                           ', N'Maitland                                                                                            ', 52, 1, 0, CAST(N'2017-01-05T08:58:18.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3035, N'MTTFLTV             ', N'T hirih                                                                                             ', N'Mira                                                                                                ', 8, 6, 0, CAST(N'2017-01-05T08:58:21.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3036, N'SZMTKGD             ', N'Zaragamba                                                                                           ', N'Sacnite                                                                                             ', 71, 5, 0, CAST(N'2017-01-05T08:58:22.773' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3037, N'JCLKPYF             ', N'Chubb                                                                                               ', N'Johanna                                                                                             ', 4, 3, 0, CAST(N'2017-01-05T08:58:25.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3038, N'PUMDJTA             ', N'Ulalume                                                                                             ', N'Potatosower                                                                                         ', 10, 3, 0, CAST(N'2017-01-05T08:58:28.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3040, N'MHBGUTR             ', N'Hagstr m                                                                                            ', N'Melissa                                                                                             ', 18, 8, 0, CAST(N'2017-01-05T08:58:30.893' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3041, N'HJLDOAJ             ', N'Julitta                                                                                             ', N'Harmony                                                                                             ', 40, 2, 0, CAST(N'2017-01-05T08:58:32.393' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3043, N'GKOVTXX             ', N'Koenig                                                                                              ', N'Grapple                                                                                             ', 2, 6, 0, CAST(N'2017-01-05T08:58:36.827' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3044, N'PPSNGNX             ', N'Peacespirit                                                                                         ', N'Prisca                                                                                              ', 14, 4, 0, CAST(N'2017-01-05T08:58:39.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3045, N'DSVELLE             ', N'Sempers                                                                                             ', N'Douglas                                                                                             ', 7, 4, 0, CAST(N'2017-01-05T08:58:41.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3046, N'ABFHNSV             ', N'Baphomet                                                                                            ', N'Almira                                                                                              ', 13, 3, 0, CAST(N'2017-01-05T08:58:43.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3047, N'EZFAYBG             ', N'Zaragamba                                                                                           ', N'Everild                                                                                             ', 9, 5, 0, CAST(N'2017-01-05T08:58:46.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3048, N'HQCKKYA             ', N'Quickberry                                                                                          ', N'Herbie                                                                                              ', 6, 8, 0, CAST(N'2017-01-05T08:58:48.773' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3049, N'GRFOYOA             ', N'Ra                                                                                                  ', N'Goldstar                                                                                            ', 42, 2, 0, CAST(N'2017-01-05T08:58:50.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3050, N'MRCLRNW             ', N'Ruairi                                                                                              ', N'Matilda                                                                                             ', 30, 4, 0, CAST(N'2017-01-05T08:58:53.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3051, N'BBDNCBI             ', N'Breakdown                                                                                           ', N'Blair                                                                                               ', 20, 2, 0, CAST(N'2017-01-05T08:58:55.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3052, N'RNYLGOI             ', N'Nye                                                                                                 ', N'Rhino                                                                                               ', 19, 1, 0, CAST(N'2017-01-05T08:58:57.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3053, N'PRPURGF             ', N'Ra                                                                                                  ', N'Pandora                                                                                             ', 12, 3, 0, CAST(N'2017-01-05T08:58:58.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3054, N'SDTVYOI             ', N'Dazzlegaze                                                                                          ', N'Scourge                                                                                             ', 33, 7, 0, CAST(N'2017-01-05T09:00:22.743' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3055, N'RPOXLXB             ', N'Pocahontas                                                                                          ', N'Ross                                                                                                ', 41, 3, 0, CAST(N'2017-01-05T09:04:26.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3056, N'HSMCBFN             ', N'Saraste                                                                                             ', N'Hingle                                                                                              ', 64, 8, 0, CAST(N'2017-01-05T09:04:27.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3057, N'GSVYEVU             ', N'Sureshot                                                                                            ', N'Grimalda                                                                                            ', 70, 6, 0, CAST(N'2017-01-05T09:04:28.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3058, N'EGAIPCX             ', N'Grubb                                                                                               ', N'Elsdon                                                                                              ', 15, 1, 0, CAST(N'2017-01-05T09:04:29.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3059, N'LNFHPNS             ', N'Nita                                                                                                ', N'Loyd                                                                                                ', 28, 8, 0, CAST(N'2017-01-05T09:04:30.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3060, N'RGGUCUH             ', N'Grubb                                                                                               ', N'Rollo                                                                                               ', 29, 5, 0, CAST(N'2017-01-05T09:04:33.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3061, N'DSDPFOE             ', N'Sigrid                                                                                              ', N'Diamond                                                                                             ', 38, 5, 0, CAST(N'2017-01-05T09:04:37.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3062, N'TCCPMGY             ', N'Christmas                                                                                           ', N'Titania                                                                                             ', 36, 7, 0, CAST(N'2017-01-05T09:04:39.307' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3063, N'CPBETQI             ', N'Proudfoot                                                                                           ', N'Chickenchaser                                                                                       ', 39, 2, 0, CAST(N'2017-01-05T09:04:40.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3064, N'DCUFMYT             ', N'Clarkson                                                                                            ', N'Dirtgreaser                                                                                         ', 11, 5, 0, CAST(N'2017-01-05T09:04:41.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3065, N'GPROLCN             ', N'Prowl                                                                                               ', N'Grimalda                                                                                            ', 16, 7, 0, CAST(N'2017-01-05T09:04:44.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3107, N'DCVSCNS             ', N'Clarkson                                                                                            ', N'Daniel                                                                                              ', 58, 5, 0, CAST(N'2017-01-05T09:18:12.380' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3108, N'SSFPVQG             ', N'Sempers                                                                                             ', N'Sweetstar                                                                                           ', 36, 3, 0, CAST(N'2017-01-05T09:18:13.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3109, N'CLVQPCH             ', N'Leavitt                                                                                             ', N'Crush                                                                                               ', 29, 2, 0, CAST(N'2017-01-05T09:18:14.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3110, N'DLIXCNB             ', N'Lothran                                                                                             ', N'David                                                                                               ', 40, 6, 0, CAST(N'2017-01-05T09:18:15.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3112, N'GMAGJPJ             ', N'McCringleberry                                                                                      ', N'Gilchrist                                                                                           ', 19, 4, 0, CAST(N'2017-01-05T09:18:17.087' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3113, N'LSDLUDK             ', N'Saunders                                                                                            ', N'Loyd                                                                                                ', 35, 8, 0, CAST(N'2017-01-05T09:18:17.943' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3114, N'DCRYRCR             ', N'Cringleberry                                                                                        ', N'Devastator                                                                                          ', 3, 3, 0, CAST(N'2017-01-05T09:18:18.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3116, N'BBBGMEJ             ', N'Bunce                                                                                               ', N'Bertram                                                                                             ', 38, 3, 0, CAST(N'2017-01-05T09:18:20.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3118, N'FNATTUI             ', N'Nita                                                                                                ', N'Fergus                                                                                              ', 52, 8, 0, CAST(N'2017-01-05T09:18:22.813' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3119, N'ZPWARSN             ', N'Philomel                                                                                            ', N'Za re                                                                                               ', 21, 3, 0, CAST(N'2017-01-05T09:18:23.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3120, N'TSPPRGQ             ', N'Sigrid                                                                                              ', N'Tiia                                                                                                ', 11, 7, 0, CAST(N'2017-01-05T09:18:25.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3121, N'ASJBSFH             ', N'Scourge                                                                                             ', N'Arnie                                                                                               ', 13, 5, 0, CAST(N'2017-01-05T09:18:26.167' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3122, N'DPPFHOG             ', N'Philomel                                                                                            ', N'Dirtgreaser                                                                                         ', 4, 3, 0, CAST(N'2017-01-05T09:18:27.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3123, N'AMRLQMY             ', N'McNaughton                                                                                          ', N'Aurel                                                                                               ', 12, 5, 0, CAST(N'2017-01-05T09:18:28.627' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3124, N'RZEDCAS             ', N'Zaragamba                                                                                           ', N'Rowan                                                                                               ', 16, 8, 0, CAST(N'2017-01-05T09:18:29.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3125, N'ALKIOQT             ', N'Leavitt                                                                                             ', N'Ailpein                                                                                             ', 70, 3, 0, CAST(N'2017-01-05T09:18:30.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3126, N'JAATEUS             ', N'Anthonyson                                                                                          ', N'Jellygleam                                                                                          ', 14, 6, 0, CAST(N'2017-01-05T09:18:32.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3127, N'GKBWQSW             ', N'Kaisa                                                                                               ', N'Goldstar                                                                                            ', 5, 5, 0, CAST(N'2017-01-05T09:18:34.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3128, N'ANUXMUD             ', N'Nye                                                                                                 ', N'Arden                                                                                               ', 30, 6, 0, CAST(N'2017-01-05T09:18:35.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3129, N'TKHYUIN             ', N'Kaisa                                                                                               ', N'Trey                                                                                                ', 20, 8, 0, CAST(N'2017-01-05T09:18:36.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3130, N'SFYVKBK             ', N'Force                                                                                               ', N'Sheard                                                                                              ', 39, 4, 0, CAST(N'2017-01-05T09:18:38.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3131, N'UCFMSBL             ', N'Calfuray                                                                                            ', N'Ultra                                                                                               ', 10, 2, 0, CAST(N'2017-01-05T09:18:40.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3132, N'RSVQQOS             ', N'Schuler                                                                                             ', N'Ruairidh                                                                                            ', 18, 8, 0, CAST(N'2017-01-05T09:18:43.157' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3133, N'TSXTJVM             ', N'Starbeam                                                                                            ', N'Titania                                                                                             ', 42, 1, 0, CAST(N'2017-01-05T09:18:44.713' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3134, N'SMXVDHV             ', N'Miles                                                                                               ', N'Sheard                                                                                              ', 9, 8, 0, CAST(N'2017-01-05T09:18:45.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3135, N'GMQGRAQ             ', N'Miles                                                                                               ', N'Gilchrist                                                                                           ', 17, 6, 0, CAST(N'2017-01-05T09:18:47.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3136, N'RSIBDAP             ', N'Starscream                                                                                          ', N'Rowan                                                                                               ', 8, 1, 0, CAST(N'2017-01-05T09:18:49.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3137, N'HBDUCYE             ', N'Breakdown                                                                                           ', N'Hingle                                                                                              ', 6, 8, 0, CAST(N'2017-01-05T09:18:56.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3138, N'PTHOQUP             ', N'T hirih                                                                                             ', N'Pansy                                                                                               ', 29, 6, 0, CAST(N'2017-01-05T09:18:58.323' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3139, N'NAQGAYS             ', N'Allsopp                                                                                             ', N'Nydia                                                                                               ', 52, 4, 0, CAST(N'2017-01-05T09:18:59.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3140, N'CSGHBOY             ', N'School                                                                                              ', N'Ceallagh                                                                                            ', 64, 4, 0, CAST(N'2017-01-05T09:19:00.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3141, N'AMNISBR             ', N'McRae                                                                                               ', N'Arlen                                                                                               ', 16, 6, 0, CAST(N'2017-01-05T09:19:01.167' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3142, N'MLUHKNO8TF          ', N'Levy                                                                                                ', N'Mooncheeks                                                                                          ', 38, 2, 0, CAST(N'2017-01-05T09:32:14.523' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3143, N'BPKDRU4CXR          ', N'Peacespirit                                                                                         ', N'Bertram                                                                                             ', 36, 5, 0, CAST(N'2017-01-05T09:32:19.247' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3144, N'DO7EIAUQ8V          ', N'Optimus                                                                                             ', N'Defensor                                                                                            ', 6, 6, 0, CAST(N'2017-01-05T09:32:20.173' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3145, N'HSF58E8JNB          ', N'Sparklemoon                                                                                         ', N'Herbie                                                                                              ', 18, 5, 0, CAST(N'2017-01-05T09:32:21.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3146, N'AFIBGQDGSA          ', N'Fraser                                                                                              ', N'Atomic                                                                                              ', 7, 4, 0, CAST(N'2017-01-05T09:32:21.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3147, N'GH7DH19HR7          ', N'Hofmann                                                                                             ', N'Gumphauler                                                                                          ', 2, 2, 0, CAST(N'2017-01-05T09:32:23.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3148, N'ARVE4NAFHT          ', N'Ruairi                                                                                              ', N'Anna                                                                                                ', 64, 6, 0, CAST(N'2017-01-05T09:32:24.310' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3149, N'RR1NBWXEE6          ', N'Rock                                                                                                ', N'Rosa                                                                                                ', 8, 5, 0, CAST(N'2017-01-05T09:32:25.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3150, N'PJ1AKOJDRQ          ', N'Junge                                                                                               ', N'Prisca                                                                                              ', 10, 3, 0, CAST(N'2017-01-05T09:32:26.640' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3151, N'MUMQH855D8          ', N'Ulalume                                                                                             ', N'Mari                                                                                                ', 9, 1, 0, CAST(N'2017-01-05T09:32:27.523' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3152, N'PMHS1YAYMN          ', N'Moongaze                                                                                            ', N'Perceptor                                                                                           ', 12, 3, 0, CAST(N'2017-01-05T09:32:28.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3153, N'SPQJR3NR33          ', N'Proudfoot                                                                                           ', N'Savanna                                                                                             ', 13, 1, 0, CAST(N'2017-01-05T09:32:29.220' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3154, N'ABH3JIHWES          ', N'Badcock                                                                                             ', N'Almira                                                                                              ', 20, 5, 0, CAST(N'2017-01-05T09:32:30.227' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3155, N'AS0JB535GT          ', N'Studwick                                                                                            ', N'Aloysius                                                                                            ', 33, 6, 0, CAST(N'2017-01-05T09:32:37.983' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3156, N'MLNFQQNJMD          ', N'Levy                                                                                                ', N'Mooncheeks                                                                                          ', 38, 2, 0, CAST(N'2017-01-05T09:33:17.193' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3157, N'BPDYI6HOY3          ', N'Peacespirit                                                                                         ', N'Bertram                                                                                             ', 36, 5, 0, CAST(N'2017-01-05T09:33:18.193' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3158, N'DO912WMI8H          ', N'Optimus                                                                                             ', N'Defensor                                                                                            ', 6, 6, 0, CAST(N'2017-01-05T09:33:19.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3159, N'HSNDBT87XE          ', N'Sparklemoon                                                                                         ', N'Herbie                                                                                              ', 18, 5, 0, CAST(N'2017-01-05T09:33:19.893' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3160, N'AF7QN5511S          ', N'Fraser                                                                                              ', N'Atomic                                                                                              ', 7, 4, 0, CAST(N'2017-01-05T09:33:20.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3161, N'GHOP2S1046          ', N'Hofmann                                                                                             ', N'Gumphauler                                                                                          ', 2, 2, 0, CAST(N'2017-01-05T09:33:22.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3162, N'AR32AQNOT3          ', N'Ruairi                                                                                              ', N'Anna                                                                                                ', 64, 6, 0, CAST(N'2017-01-05T09:33:22.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3163, N'RR7BH0BNPF          ', N'Rock                                                                                                ', N'Rosa                                                                                                ', 8, 5, 0, CAST(N'2017-01-05T09:33:24.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3164, N'PJ7YQRVM40          ', N'Junge                                                                                               ', N'Prisca                                                                                              ', 10, 3, 0, CAST(N'2017-01-05T09:33:25.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3165, N'MULBYPHBSW          ', N'Ulalume                                                                                             ', N'Mari                                                                                                ', 9, 1, 0, CAST(N'2017-01-05T09:33:26.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3166, N'PM4OC1F6WB          ', N'Moongaze                                                                                            ', N'Perceptor                                                                                           ', 12, 3, 0, CAST(N'2017-01-05T09:33:26.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3167, N'SPP49K1XIS          ', N'Proudfoot                                                                                           ', N'Savanna                                                                                             ', 13, 1, 0, CAST(N'2017-01-05T09:33:27.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3168, N'AB4XULL4NG          ', N'Badcock                                                                                             ', N'Almira                                                                                              ', 20, 5, 0, CAST(N'2017-01-05T09:33:28.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3169, N'AS5LW40S7D          ', N'Studwick                                                                                            ', N'Aloysius                                                                                            ', 33, 6, 0, CAST(N'2017-01-05T09:33:29.647' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3170, N'HBBUOOSOVE          ', N'Breakdown                                                                                           ', N'Harmony                                                                                             ', 71, 5, 0, CAST(N'2017-01-05T09:33:30.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3171, N'DSSS2DOMXR          ', N'Siiri                                                                                               ', N'Dina                                                                                                ', 70, 7, 0, CAST(N'2017-01-05T09:33:31.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3172, N'GHHU4NKNWO          ', N'Hogpen                                                                                              ', N'Goldshy                                                                                             ', 40, 6, 0, CAST(N'2017-01-05T09:33:33.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3173, N'KHL5BW8MS1          ', N'Hornblower                                                                                          ', N'Kateri                                                                                              ', 42, 2, 0, CAST(N'2017-01-05T09:33:34.803' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3174, N'KGHCRB0Y09          ', N'Golddust                                                                                            ', N'Kim                                                                                                 ', 52, 7, 0, CAST(N'2017-01-05T09:33:36.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3175, N'TRO3OPK1AE          ', N'Roxelana                                                                                            ', N'Twinkleleaf                                                                                         ', 5, 4, 0, CAST(N'2017-01-05T09:33:37.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3176, N'BQK58GQUJS          ', N'Quickleaf                                                                                           ', N'Bob                                                                                                 ', 15, 8, 0, CAST(N'2017-01-05T09:33:38.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3177, N'GGSVYK4NY9          ', N'Glitterfluff                                                                                        ', N'Grapple                                                                                             ', 30, 3, 0, CAST(N'2017-01-05T09:33:39.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3178, N'SLGJ18XTW5          ', N'Longhole                                                                                            ', N'Snowdance                                                                                           ', 19, 3, 0, CAST(N'2017-01-05T09:33:41.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3179, N'PCF7A1JSAP          ', N'Chubb                                                                                               ', N'Prisca                                                                                              ', 41, 2, 0, CAST(N'2017-01-05T09:33:42.047' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3180, N'HCINQ75L3X          ', N'Cosmicmother                                                                                        ', N'Hingle                                                                                              ', 3, 6, 0, CAST(N'2017-01-05T09:33:48.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3181, N'SHW35BHLEW          ', N'Hagstr m                                                                                            ', N'Snowdance                                                                                           ', 29, 2, 0, CAST(N'2017-01-05T09:33:49.607' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3182, N'MJ8WXLA0EA          ', N'J rvinen                                                                                            ', N'Mirjam                                                                                              ', 4, 5, 0, CAST(N'2017-01-05T09:33:50.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3183, N'BAMCCPL1O9          ', N'Age                                                                                                 ', N'Blair                                                                                               ', 58, 7, 0, CAST(N'2017-01-05T09:33:52.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3184, N'MF9HRGFM3W          ', N'Flutternose                                                                                         ', N'Maimu                                                                                               ', 16, 6, 0, CAST(N'2017-01-05T09:33:54.307' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3185, N'GCPMHIR7CD          ', N'Cringleberry                                                                                        ', N'Gobnata                                                                                             ', 39, 8, 0, CAST(N'2017-01-05T09:33:56.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3186, N'SF37HHNMGO          ', N'Flutternose                                                                                         ', N'Sweetstar                                                                                           ', 35, 7, 0, CAST(N'2017-01-05T09:33:59.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3187, N'ENUKNTB4ID          ', N'Nevin                                                                                               ', N'Elsdon                                                                                              ', 17, 4, 0, CAST(N'2017-01-05T09:34:02.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3188, N'GPAI8REBFF          ', N'Potatochaser                                                                                        ', N'Goldstar                                                                                            ', 28, 1, 0, CAST(N'2017-01-05T09:34:04.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3189, N'JBPQJEMIG8          ', N'Bolger-Baggins                                                                                      ', N'Jessamine                                                                                           ', 21, 2, 0, CAST(N'2017-01-05T09:34:13.827' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3190, N'TWOCSXM9E5          ', N'Wheeljack                                                                                           ', N'Titania                                                                                             ', 35, 1, 0, CAST(N'2017-01-05T09:34:17.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3191, N'FL0TYNGWVG          ', N'Levy                                                                                                ', N'Forest                                                                                              ', 11, 4, 0, CAST(N'2017-01-05T09:34:29.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3192, N'MLYS9F6KK7          ', N'Levy                                                                                                ', N'Mooncheeks                                                                                          ', 38, 2, 0, CAST(N'2017-01-05T09:35:11.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3193, N'BPJPI3RSMG          ', N'Peacespirit                                                                                         ', N'Bertram                                                                                             ', 36, 5, 0, CAST(N'2017-01-05T09:35:12.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3194, N'DO56FMCL8W          ', N'Optimus                                                                                             ', N'Defensor                                                                                            ', 6, 6, 0, CAST(N'2017-01-05T09:35:13.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3195, N'HS180CIEHC          ', N'Sparklemoon                                                                                         ', N'Herbie                                                                                              ', 18, 5, 0, CAST(N'2017-01-05T09:35:14.173' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3196, N'AF6GRWBA5E          ', N'Fraser                                                                                              ', N'Atomic                                                                                              ', 7, 4, 0, CAST(N'2017-01-05T09:35:15.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3197, N'GHNF5L788Q          ', N'Hofmann                                                                                             ', N'Gumphauler                                                                                          ', 2, 2, 0, CAST(N'2017-01-05T09:35:16.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3198, N'ARJHOBD2H6          ', N'Ruairi                                                                                              ', N'Anna                                                                                                ', 64, 6, 0, CAST(N'2017-01-05T09:35:17.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3199, N'RR1G2090JJ          ', N'Rock                                                                                                ', N'Rosa                                                                                                ', 8, 5, 0, CAST(N'2017-01-05T09:35:18.733' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3200, N'PJDRI62X45          ', N'Junge                                                                                               ', N'Prisca                                                                                              ', 10, 3, 0, CAST(N'2017-01-05T09:35:19.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3201, N'MUGXPI7U94          ', N'Ulalume                                                                                             ', N'Mari                                                                                                ', 9, 1, 0, CAST(N'2017-01-05T09:35:20.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3202, N'PM2DM2SNUK          ', N'Moongaze                                                                                            ', N'Perceptor                                                                                           ', 12, 3, 0, CAST(N'2017-01-05T09:35:21.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3203, N'SPVFD26PYO          ', N'Proudfoot                                                                                           ', N'Savanna                                                                                             ', 13, 1, 0, CAST(N'2017-01-05T09:35:22.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3204, N'ABT4JLU5IP          ', N'Badcock                                                                                             ', N'Almira                                                                                              ', 20, 5, 0, CAST(N'2017-01-05T09:35:23.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3205, N'ASK6EMIXNX          ', N'Studwick                                                                                            ', N'Aloysius                                                                                            ', 33, 6, 0, CAST(N'2017-01-05T09:35:25.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3206, N'HBQGFMYNPL          ', N'Breakdown                                                                                           ', N'Harmony                                                                                             ', 71, 5, 0, CAST(N'2017-01-05T09:35:26.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3207, N'DSH3D9I4MC          ', N'Siiri                                                                                               ', N'Dina                                                                                                ', 70, 7, 0, CAST(N'2017-01-05T09:35:27.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3208, N'GHCR6Q9VAC          ', N'Hogpen                                                                                              ', N'Goldshy                                                                                             ', 40, 6, 0, CAST(N'2017-01-05T09:35:29.613' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3209, N'KHTAM10H58          ', N'Hornblower                                                                                          ', N'Kateri                                                                                              ', 42, 2, 0, CAST(N'2017-01-05T09:35:31.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3210, N'KG9YLXF01W          ', N'Golddust                                                                                            ', N'Kim                                                                                                 ', 52, 7, 0, CAST(N'2017-01-05T09:35:34.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3211, N'TRH9FNNG9V          ', N'Roxelana                                                                                            ', N'Twinkleleaf                                                                                         ', 5, 4, 0, CAST(N'2017-01-05T09:35:35.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3212, N'BQP4CYRK9D          ', N'Quickleaf                                                                                           ', N'Bob                                                                                                 ', 15, 8, 0, CAST(N'2017-01-05T09:35:37.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3213, N'GG0Y11NFG7          ', N'Glitterfluff                                                                                        ', N'Grapple                                                                                             ', 30, 3, 0, CAST(N'2017-01-05T09:35:38.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3214, N'SLVANN538H          ', N'Longhole                                                                                            ', N'Snowdance                                                                                           ', 19, 3, 0, CAST(N'2017-01-05T09:35:40.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3215, N'PCNBLVPE69          ', N'Chubb                                                                                               ', N'Prisca                                                                                              ', 41, 2, 0, CAST(N'2017-01-05T09:35:41.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3216, N'HCPQTNODKV          ', N'Cosmicmother                                                                                        ', N'Hingle                                                                                              ', 3, 6, 0, CAST(N'2017-01-05T09:35:47.613' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3217, N'SH2N0965JV          ', N'Hagstr m                                                                                            ', N'Snowdance                                                                                           ', 29, 2, 0, CAST(N'2017-01-05T09:35:55.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3218, N'MJ2NQAUVYB          ', N'J rvinen                                                                                            ', N'Mirjam                                                                                              ', 4, 5, 0, CAST(N'2017-01-05T09:36:01.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3219, N'BA4EY0XV49          ', N'Age                                                                                                 ', N'Blair                                                                                               ', 58, 7, 0, CAST(N'2017-01-05T09:36:03.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3220, N'MFK0LGFTK7          ', N'Flutternose                                                                                         ', N'Maimu                                                                                               ', 16, 6, 0, CAST(N'2017-01-05T09:36:05.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3221, N'GC86E8DQE2          ', N'Cringleberry                                                                                        ', N'Gobnata                                                                                             ', 39, 8, 0, CAST(N'2017-01-05T09:37:18.963' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3222, N'SFEMQLA3NS          ', N'Flutternose                                                                                         ', N'Sweetstar                                                                                           ', 35, 7, 0, CAST(N'2017-01-05T09:37:21.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3223, N'MLXWF4HINE          ', N'Levy                                                                                                ', N'Mooncheeks                                                                                          ', 38, 2, 0, CAST(N'2017-01-05T09:39:01.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3224, N'BPFBQ6ISW8          ', N'Peacespirit                                                                                         ', N'Bertram                                                                                             ', 36, 5, 0, CAST(N'2017-01-05T09:39:02.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3225, N'DOGYSPVIG5          ', N'Optimus                                                                                             ', N'Defensor                                                                                            ', 6, 6, 0, CAST(N'2017-01-05T09:39:03.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3226, N'HSVB2MH762          ', N'Sparklemoon                                                                                         ', N'Herbie                                                                                              ', 18, 5, 0, CAST(N'2017-01-05T09:39:04.387' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3227, N'AFRDLCN1FG          ', N'Fraser                                                                                              ', N'Atomic                                                                                              ', 7, 4, 0, CAST(N'2017-01-05T09:39:05.220' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3228, N'GHOJ40BWG9          ', N'Hofmann                                                                                             ', N'Gumphauler                                                                                          ', 2, 2, 0, CAST(N'2017-01-05T09:39:06.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3229, N'AR3WDWWL66          ', N'Ruairi                                                                                              ', N'Anna                                                                                                ', 64, 6, 0, CAST(N'2017-01-05T09:39:07.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3230, N'RRF98SKNY2          ', N'Rock                                                                                                ', N'Rosa                                                                                                ', 8, 5, 0, CAST(N'2017-01-05T09:39:08.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3231, N'PJEWHK6MCN          ', N'Junge                                                                                               ', N'Prisca                                                                                              ', 10, 3, 0, CAST(N'2017-01-05T09:39:09.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3232, N'MU7G2QRITN          ', N'Ulalume                                                                                             ', N'Mari                                                                                                ', 9, 1, 0, CAST(N'2017-01-05T09:39:10.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3233, N'PMSVYBCBF5          ', N'Moongaze                                                                                            ', N'Perceptor                                                                                           ', 12, 3, 0, CAST(N'2017-01-05T09:39:11.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3234, N'SPV27MI7L4          ', N'Proudfoot                                                                                           ', N'Savanna                                                                                             ', 13, 1, 0, CAST(N'2017-01-05T09:39:12.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3235, N'ABYA5HJC3U          ', N'Badcock                                                                                             ', N'Almira                                                                                              ', 20, 5, 0, CAST(N'2017-01-05T09:39:13.450' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3236, N'AS81VMW5IA          ', N'Studwick                                                                                            ', N'Aloysius                                                                                            ', 33, 6, 0, CAST(N'2017-01-05T09:39:14.310' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3237, N'HBNVADA1TA          ', N'Breakdown                                                                                           ', N'Harmony                                                                                             ', 71, 5, 0, CAST(N'2017-01-05T09:39:15.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3238, N'DSOMI3D2Y8          ', N'Siiri                                                                                               ', N'Dina                                                                                                ', 70, 7, 0, CAST(N'2017-01-05T09:39:16.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3239, N'GHH9AFP92B          ', N'Hogpen                                                                                              ', N'Goldshy                                                                                             ', 40, 6, 0, CAST(N'2017-01-05T09:39:18.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3240, N'KHLIGOD7XN          ', N'Hornblower                                                                                          ', N'Kateri                                                                                              ', 42, 2, 0, CAST(N'2017-01-05T09:39:19.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3241, N'KGRCKAOKST          ', N'Golddust                                                                                            ', N'Kim                                                                                                 ', 52, 7, 0, CAST(N'2017-01-05T09:39:21.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3242, N'TRHE6VPIJG          ', N'Roxelana                                                                                            ', N'Twinkleleaf                                                                                         ', 5, 4, 0, CAST(N'2017-01-05T09:39:22.203' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3243, N'BQ8WXBINU6          ', N'Quickleaf                                                                                           ', N'Bob                                                                                                 ', 15, 8, 0, CAST(N'2017-01-05T09:39:23.450' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3244, N'GGSEAJYJPW          ', N'Glitterfluff                                                                                        ', N'Grapple                                                                                             ', 30, 3, 0, CAST(N'2017-01-05T09:39:24.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3245, N'SLV9I6LMK8          ', N'Longhole                                                                                            ', N'Snowdance                                                                                           ', 19, 3, 0, CAST(N'2017-01-05T09:39:26.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3246, N'PCMRALERWX          ', N'Chubb                                                                                               ', N'Prisca                                                                                              ', 41, 2, 0, CAST(N'2017-01-05T09:39:27.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3247, N'HC9HI7D0Y8          ', N'Cosmicmother                                                                                        ', N'Hingle                                                                                              ', 3, 6, 0, CAST(N'2017-01-05T09:39:33.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3248, N'SHBWPYCXET          ', N'Hagstr m                                                                                            ', N'Snowdance                                                                                           ', 29, 2, 0, CAST(N'2017-01-05T09:39:39.053' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3249, N'MLTRJ4DV8Q          ', N'Levy                                                                                                ', N'Mooncheeks                                                                                          ', 38, 2, 0, CAST(N'2017-01-05T09:40:18.447' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3250, N'BPA51GLFC9          ', N'Peacespirit                                                                                         ', N'Bertram                                                                                             ', 36, 5, 0, CAST(N'2017-01-05T09:40:19.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3251, N'DOTK49FGSE          ', N'Optimus                                                                                             ', N'Defensor                                                                                            ', 6, 6, 0, CAST(N'2017-01-05T09:40:20.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3252, N'HSL4PF0CAF          ', N'Sparklemoon                                                                                         ', N'Herbie                                                                                              ', 18, 5, 0, CAST(N'2017-01-05T09:40:21.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3253, N'AFF6GFDFDJ          ', N'Fraser                                                                                              ', N'Atomic                                                                                              ', 7, 4, 0, CAST(N'2017-01-05T09:40:22.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3254, N'GHLID6WLMM          ', N'Hofmann                                                                                             ', N'Gumphauler                                                                                          ', 2, 2, 0, CAST(N'2017-01-05T09:40:23.973' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3255, N'AROPC1XP4D          ', N'Ruairi                                                                                              ', N'Anna                                                                                                ', 64, 6, 0, CAST(N'2017-01-05T09:40:24.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3256, N'RR2N3896V4          ', N'Rock                                                                                                ', N'Rosa                                                                                                ', 8, 5, 0, CAST(N'2017-01-05T09:40:26.977' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3257, N'PJ0TMVW2VV          ', N'Junge                                                                                               ', N'Prisca                                                                                              ', 10, 3, 0, CAST(N'2017-01-05T09:40:27.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3258, N'MU52EGQWJX          ', N'Ulalume                                                                                             ', N'Mari                                                                                                ', 9, 1, 0, CAST(N'2017-01-05T09:40:28.897' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3259, N'PM87LSVTPW          ', N'Moongaze                                                                                            ', N'Perceptor                                                                                           ', 12, 3, 0, CAST(N'2017-01-05T09:40:29.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3260, N'SP7UUKHS3H          ', N'Proudfoot                                                                                           ', N'Savanna                                                                                             ', 13, 1, 0, CAST(N'2017-01-05T09:40:30.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3261, N'ABXDM0AWE7          ', N'Badcock                                                                                             ', N'Almira                                                                                              ', 20, 5, 0, CAST(N'2017-01-05T09:40:31.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3262, N'ASJTJKVP0O          ', N'Studwick                                                                                            ', N'Aloysius                                                                                            ', 33, 6, 0, CAST(N'2017-01-05T09:40:32.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3263, N'HB6RMW9O88          ', N'Breakdown                                                                                           ', N'Harmony                                                                                             ', 71, 5, 0, CAST(N'2017-01-05T09:40:33.523' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3264, N'DSUTN85Q75          ', N'Siiri                                                                                               ', N'Dina                                                                                                ', 70, 7, 0, CAST(N'2017-01-05T09:40:34.943' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3265, N'GHS2XDOTJO          ', N'Hogpen                                                                                              ', N'Goldshy                                                                                             ', 40, 6, 0, CAST(N'2017-01-05T09:40:36.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3266, N'KHXB5MCSG1          ', N'Hornblower                                                                                          ', N'Kateri                                                                                              ', 42, 2, 0, CAST(N'2017-01-05T09:40:37.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3267, N'KGB9VTN97R          ', N'Golddust                                                                                            ', N'Kim                                                                                                 ', 52, 7, 0, CAST(N'2017-01-05T09:40:39.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3268, N'TRAE0SH1Y9          ', N'Roxelana                                                                                            ', N'Twinkleleaf                                                                                         ', 5, 4, 0, CAST(N'2017-01-05T09:40:40.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3269, N'BQ918K20CT          ', N'Quickleaf                                                                                           ', N'Bob                                                                                                 ', 15, 8, 0, CAST(N'2017-01-05T09:40:41.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3270, N'GG53SA8SL9          ', N'Glitterfluff                                                                                        ', N'Grapple                                                                                             ', 30, 3, 0, CAST(N'2017-01-05T09:40:42.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3271, N'SLO65VMTF0          ', N'Longhole                                                                                            ', N'Snowdance                                                                                           ', 19, 3, 0, CAST(N'2017-01-05T09:40:44.043' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3272, N'PCB4890SNJ          ', N'Chubb                                                                                               ', N'Prisca                                                                                              ', 41, 2, 0, CAST(N'2017-01-05T09:40:44.983' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3273, N'HC6FREYO6L          ', N'Cosmicmother                                                                                        ', N'Hingle                                                                                              ', 3, 6, 0, CAST(N'2017-01-05T09:40:50.693' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3274, N'SHA1LCKGRH          ', N'Hagstr m                                                                                            ', N'Snowdance                                                                                           ', 29, 2, 0, CAST(N'2017-01-05T09:41:31.153' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3275, N'MLKPDSS7UY          ', N'Levy                                                                                                ', N'Mooncheeks                                                                                          ', 38, 2, 0, CAST(N'2017-01-05T09:45:22.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3276, N'BPETUB2GBT          ', N'Peacespirit                                                                                         ', N'Bertram                                                                                             ', 36, 5, 0, CAST(N'2017-01-05T09:45:23.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3277, N'DOAVE17AK9          ', N'Optimus                                                                                             ', N'Defensor                                                                                            ', 6, 6, 0, CAST(N'2017-01-05T09:45:24.377' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3278, N'HSF46L058B          ', N'Sparklemoon                                                                                         ', N'Herbie                                                                                              ', 18, 5, 0, CAST(N'2017-01-05T09:45:25.337' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3279, N'AFOUWQEXNQ          ', N'Fraser                                                                                              ', N'Atomic                                                                                              ', 7, 4, 0, CAST(N'2017-01-05T09:45:26.227' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3280, N'GHS5302WK3          ', N'Hofmann                                                                                             ', N'Gumphauler                                                                                          ', 2, 2, 0, CAST(N'2017-01-05T09:45:27.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3281, N'ARYDUKUR85          ', N'Ruairi                                                                                              ', N'Anna                                                                                                ', 64, 6, 0, CAST(N'2017-01-05T09:45:28.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3282, N'RRNFWUQT62          ', N'Rock                                                                                                ', N'Rosa                                                                                                ', 8, 5, 0, CAST(N'2017-01-05T09:45:29.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3283, N'PJDXOAJYIR          ', N'Junge                                                                                               ', N'Prisca                                                                                              ', 10, 3, 0, CAST(N'2017-01-05T09:45:30.953' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3284, N'MU9081PRR7          ', N'Ulalume                                                                                             ', N'Mari                                                                                                ', 9, 1, 0, CAST(N'2017-01-05T09:45:31.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3285, N'PMF90LIMF8          ', N'Moongaze                                                                                            ', N'Perceptor                                                                                           ', 12, 3, 0, CAST(N'2017-01-05T09:45:32.693' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3286, N'SPHE8XOJL7          ', N'Proudfoot                                                                                           ', N'Savanna                                                                                             ', 13, 1, 0, CAST(N'2017-01-05T09:45:33.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3287, N'ABF1NYHRSG          ', N'Badcock                                                                                             ', N'Almira                                                                                              ', 20, 5, 0, CAST(N'2017-01-05T09:45:34.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3288, N'AS733CBGOF          ', N'Studwick                                                                                            ', N'Aloysius                                                                                            ', 33, 6, 0, CAST(N'2017-01-05T09:45:35.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3289, N'HBFTTGO94U          ', N'Breakdown                                                                                           ', N'Harmony                                                                                             ', 71, 5, 0, CAST(N'2017-01-05T09:45:36.327' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3290, N'DSXACXCESB          ', N'Siiri                                                                                               ', N'Dina                                                                                                ', 70, 7, 0, CAST(N'2017-01-05T09:45:37.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3291, N'GHJTFONI0T          ', N'Hogpen                                                                                              ', N'Goldshy                                                                                             ', 40, 6, 0, CAST(N'2017-01-05T09:45:39.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3292, N'KHEH0RRG88          ', N'Hornblower                                                                                          ', N'Kateri                                                                                              ', 42, 2, 0, CAST(N'2017-01-05T09:45:40.703' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3293, N'KGKB3D3T3E          ', N'Golddust                                                                                            ', N'Kim                                                                                                 ', 52, 7, 0, CAST(N'2017-01-05T09:45:42.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3294, N'TRS2TIGMIU          ', N'Roxelana                                                                                            ', N'Twinkleleaf                                                                                         ', 5, 4, 0, CAST(N'2017-01-05T09:45:43.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3295, N'BQ2DM8O3QT          ', N'Quickleaf                                                                                           ', N'Bob                                                                                                 ', 15, 8, 0, CAST(N'2017-01-05T09:45:44.607' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3296, N'GG42X6PNPB          ', N'Glitterfluff                                                                                        ', N'Grapple                                                                                             ', 30, 3, 0, CAST(N'2017-01-05T09:45:45.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3297, N'SLU8YD4QEL          ', N'Longhole                                                                                            ', N'Snowdance                                                                                           ', 19, 3, 0, CAST(N'2017-01-05T09:45:47.447' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3298, N'PC0GQYWL3N          ', N'Chubb                                                                                               ', N'Prisca                                                                                              ', 41, 2, 0, CAST(N'2017-01-05T09:45:48.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3299, N'HCE2H84032          ', N'Cosmicmother                                                                                        ', N'Hingle                                                                                              ', 3, 6, 0, CAST(N'2017-01-05T09:45:54.267' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3300, N'SH7LEXDRQ8          ', N'Hagstr m                                                                                            ', N'Snowdance                                                                                           ', 29, 2, 0, CAST(N'2017-01-05T09:55:23.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3301, N'ML3HSB894N          ', N'Levy                                                                                                ', N'Mooncheeks                                                                                          ', 38, 2, 0, CAST(N'2017-01-05T09:56:56.487' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3302, N'BPT1KQ2DFD          ', N'Peacespirit                                                                                         ', N'Bertram                                                                                             ', 36, 5, 0, CAST(N'2017-01-05T09:56:57.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3303, N'DOO35G77PS          ', N'Optimus                                                                                             ', N'Defensor                                                                                            ', 6, 6, 0, CAST(N'2017-01-05T09:56:58.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3304, N'HS4FDESWEP          ', N'Sparklemoon                                                                                         ', N'Herbie                                                                                              ', 18, 5, 0, CAST(N'2017-01-05T09:56:59.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3305, N'AFMSQOPQI4          ', N'Fraser                                                                                              ', N'Atomic                                                                                              ', 7, 4, 0, CAST(N'2017-01-05T09:57:00.017' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3306, N'GHPKR5MISD          ', N'Hofmann                                                                                             ', N'Gumphauler                                                                                          ', 2, 2, 0, CAST(N'2017-01-05T09:57:01.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3307, N'AR4W1287IA          ', N'Ruairi                                                                                              ', N'Anna                                                                                                ', 64, 6, 0, CAST(N'2017-01-05T09:57:02.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3308, N'RR23KPV3I2          ', N'Rock                                                                                                ', N'Rosa                                                                                                ', 8, 5, 0, CAST(N'2017-01-05T09:57:03.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3309, N'PJO1M393QM          ', N'Junge                                                                                               ', N'Prisca                                                                                              ', 10, 3, 0, CAST(N'2017-01-05T09:57:04.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3310, N'MU3DV0URGJ          ', N'Ulalume                                                                                             ', N'Mari                                                                                                ', 9, 1, 0, CAST(N'2017-01-05T09:57:05.310' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3311, N'PMYFFQ0LPX          ', N'Moongaze                                                                                            ', N'Perceptor                                                                                           ', 12, 3, 0, CAST(N'2017-01-05T09:57:06.167' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3312, N'SPUHYG6EYD          ', N'Proudfoot                                                                                           ', N'Savanna                                                                                             ', 13, 1, 0, CAST(N'2017-01-05T09:57:07.007' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3313, N'ABRM9O7FLK          ', N'Badcock                                                                                             ', N'Almira                                                                                              ', 20, 5, 0, CAST(N'2017-01-05T09:57:08.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3314, N'ASMOSEC9UY          ', N'Studwick                                                                                            ', N'Aloysius                                                                                            ', 33, 6, 0, CAST(N'2017-01-05T09:57:08.857' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3315, N'HBVFJJP2AF          ', N'Breakdown                                                                                           ', N'Harmony                                                                                             ', 71, 5, 0, CAST(N'2017-01-05T09:57:09.713' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3316, N'DSY7KYMTKO          ', N'Siiri                                                                                               ', N'Dina                                                                                                ', 70, 7, 0, CAST(N'2017-01-05T09:57:11.053' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3317, N'GHN9M9HVJL          ', N'Hogpen                                                                                              ', N'Goldshy                                                                                             ', 40, 6, 0, CAST(N'2017-01-05T09:57:12.507' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3318, N'KHQ1NPENTU          ', N'Hornblower                                                                                          ', N'Kateri                                                                                              ', 42, 2, 0, CAST(N'2017-01-05T09:57:13.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3319, N'KGT9289VKV          ', N'Golddust                                                                                            ', N'Kim                                                                                                 ', 52, 7, 0, CAST(N'2017-01-05T09:57:15.323' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3320, N'TR8MB6UKAS          ', N'Roxelana                                                                                            ', N'Twinkleleaf                                                                                         ', 5, 4, 0, CAST(N'2017-01-05T09:57:16.167' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3321, N'BQ4OUV1EJ8          ', N'Quickleaf                                                                                           ', N'Bob                                                                                                 ', 15, 8, 0, CAST(N'2017-01-05T09:57:17.007' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3322, N'GG0QEL67SM          ', N'Glitterfluff                                                                                        ', N'Grapple                                                                                             ', 30, 3, 0, CAST(N'2017-01-05T09:57:17.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3323, N'SLKTKXDYSO          ', N'Longhole                                                                                            ', N'Snowdance                                                                                           ', 19, 3, 0, CAST(N'2017-01-05T09:57:19.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3324, N'PCDD53XUAP          ', N'Chubb                                                                                               ', N'Prisca                                                                                              ', 41, 2, 0, CAST(N'2017-01-05T09:57:20.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3325, N'HCIEIL822R          ', N'Cosmicmother                                                                                        ', N'Hingle                                                                                              ', 3, 6, 0, CAST(N'2017-01-05T09:57:26.847' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3326, N'SH7HA5E2VS          ', N'Hagstr m                                                                                            ', N'Snowdance                                                                                           ', 29, 2, 0, CAST(N'2017-01-05T09:57:31.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3327, N'ML09Q4EB4X          ', N'Levy                                                                                                ', N'Mooncheeks                                                                                          ', 38, 2, 0, CAST(N'2017-01-05T09:58:12.667' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3328, N'BPK60QYJ66          ', N'Peacespirit                                                                                         ', N'Bertram                                                                                             ', 36, 5, 0, CAST(N'2017-01-05T09:58:13.693' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3329, N'DO95VU4AJ2          ', N'Optimus                                                                                             ', N'Defensor                                                                                            ', 6, 6, 0, CAST(N'2017-01-05T09:58:14.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3330, N'HSNH4SQY9Y          ', N'Sparklemoon                                                                                         ', N'Herbie                                                                                              ', 18, 5, 0, CAST(N'2017-01-05T09:58:15.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3331, N'AFV9UW4ROE          ', N'Fraser                                                                                              ', N'Atomic                                                                                              ', 7, 4, 0, CAST(N'2017-01-05T09:58:16.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3332, N'GHGP75JOI6          ', N'Hofmann                                                                                             ', N'Gumphauler                                                                                          ', 2, 2, 0, CAST(N'2017-01-05T09:58:17.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3333, N'ARPHWAWHXM          ', N'Ruairi                                                                                              ', N'Anna                                                                                                ', 64, 6, 0, CAST(N'2017-01-05T09:58:18.397' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3334, N'RRGJRBL93U          ', N'Rock                                                                                                ', N'Rosa                                                                                                ', 8, 5, 0, CAST(N'2017-01-05T09:58:19.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3335, N'PJLSJVE5QW          ', N'Junge                                                                                               ', N'Prisca                                                                                              ', 10, 3, 0, CAST(N'2017-01-05T09:58:20.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3336, N'MUNGMESUAS          ', N'Ulalume                                                                                             ', N'Mari                                                                                                ', 9, 1, 0, CAST(N'2017-01-05T09:58:21.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3337, N'PMII65XNJ7          ', N'Moongaze                                                                                            ', N'Perceptor                                                                                           ', 12, 3, 0, CAST(N'2017-01-05T09:58:22.310' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3338, N'SP4X3OJG5O          ', N'Proudfoot                                                                                           ', N'Savanna                                                                                             ', 13, 1, 0, CAST(N'2017-01-05T09:58:23.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3339, N'ABIRNO4LBD          ', N'Badcock                                                                                             ', N'Almira                                                                                              ', 20, 5, 0, CAST(N'2017-01-05T09:58:24.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3340, N'ASET8EAFKR          ', N'Studwick                                                                                            ', N'Aloysius                                                                                            ', 33, 6, 0, CAST(N'2017-01-05T09:58:25.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3341, N'HB1U1AIL43          ', N'Breakdown                                                                                           ', N'Harmony                                                                                             ', 71, 5, 0, CAST(N'2017-01-05T09:58:26.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3342, N'DSDRYR2CPI          ', N'Siiri                                                                                               ', N'Dina                                                                                                ', 70, 7, 0, CAST(N'2017-01-05T09:58:27.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3343, N'GHEI7G5CTG          ', N'Hogpen                                                                                              ', N'Goldshy                                                                                             ', 40, 6, 0, CAST(N'2017-01-05T09:58:29.287' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3344, N'KH224X977A          ', N'Hornblower                                                                                          ', N'Kateri                                                                                              ', 42, 2, 0, CAST(N'2017-01-05T09:58:30.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3345, N'KG4BHG5FXB          ', N'Golddust                                                                                            ', N'Kim                                                                                                 ', 52, 7, 0, CAST(N'2017-01-05T09:58:32.177' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3346, N'TR6YJYI5H7          ', N'Roxelana                                                                                            ', N'Twinkleleaf                                                                                         ', 5, 4, 0, CAST(N'2017-01-05T09:58:32.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3347, N'BQEQA4VXWN          ', N'Quickleaf                                                                                           ', N'Bob                                                                                                 ', 15, 8, 0, CAST(N'2017-01-05T09:58:33.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3348, N'GGASTT1R63          ', N'Glitterfluff                                                                                        ', N'Grapple                                                                                             ', 30, 3, 0, CAST(N'2017-01-05T09:58:34.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3349, N'SL2YNR8L2O          ', N'Longhole                                                                                            ', N'Snowdance                                                                                           ', 19, 3, 0, CAST(N'2017-01-05T09:58:36.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3350, N'PCUI9XTHJP          ', N'Chubb                                                                                               ', N'Prisca                                                                                              ', 41, 2, 0, CAST(N'2017-01-05T09:58:37.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3351, N'HCQSVBPVUB          ', N'Cosmicmother                                                                                        ', N'Hingle                                                                                              ', 3, 6, 0, CAST(N'2017-01-05T09:58:42.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3352, N'SHQOP607U5          ', N'Hagstr m                                                                                            ', N'Snowdance                                                                                           ', 29, 2, 0, CAST(N'2017-01-05T09:59:38.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3353, N'MS7259EK4ADLGPS9B   ', N'Saunders                                                                                            ', N'Mooncheeks                                                                                          ', 38, 7, 0, CAST(N'2017-01-05T10:07:42.320' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3354, N'DJR0EVYS6IO2J37LL   ', N'Jakeman                                                                                             ', N'Dolly-Sue                                                                                           ', 3, 8, 0, CAST(N'2017-01-05T10:07:43.353' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3355, N'MS9EPY03FDRP2MVPY   ', N'Schuler                                                                                             ', N'Marika                                                                                              ', 40, 2, 0, CAST(N'2017-01-05T10:07:44.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3356, N'PPUUMILV1TW0YYPFQ   ', N'Payton                                                                                              ', N'Peggy-Rae                                                                                           ', 4, 4, 0, CAST(N'2017-01-05T10:07:45.317' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3357, N'KM3LCNYOHA2E3TJSB   ', N'Miles                                                                                               ', N'Katariina                                                                                           ', 15, 3, 0, CAST(N'2017-01-05T10:07:46.177' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3358, N'SFYNWD4IQO8VE6DUO   ', N'Fantine                                                                                             ', N'Silverfrost                                                                                         ', 5, 7, 0, CAST(N'2017-01-05T10:07:47.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3359, N'RBK4TWPAC6C6BI7JG   ', N'Badcock                                                                                             ', N'Rollo                                                                                               ', 64, 3, 0, CAST(N'2017-01-05T10:07:47.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3360, N'CZG6DNU4LLINMV2LU   ', N'Zaragamba                                                                                           ', N'Corona                                                                                              ', 58, 7, 0, CAST(N'2017-01-05T10:07:48.723' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3361, N'RMOW3R8W11N2QQV0F   ', N'Maoilios                                                                                            ', N'Ruairidh                                                                                            ', 12, 6, 0, CAST(N'2017-01-05T10:07:49.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3362, N'TS30RO6WPKY64ST6G   ', N'Starbeam                                                                                            ', N'Titania                                                                                             ', 41, 6, 0, CAST(N'2017-01-05T10:07:51.973' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3363, N'DSW5NU9AEQSXGFKKW   ', N'Sureshot                                                                                            ', N'Dina                                                                                                ', 18, 8, 0, CAST(N'2017-01-05T10:07:53.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3364, N'ZMCJ57HTI9ETA27EK   ', N'Miles                                                                                               ', N'Zyanya                                                                                              ', 14, 6, 0, CAST(N'2017-01-05T10:07:54.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3365, N'KR32WMAYUYUQBP9WC   ', N'Roxelana                                                                                            ', N'Kerr                                                                                                ', 2, 2, 0, CAST(N'2017-01-05T10:07:55.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3366, N'AJB6WTPWEC1B9MXW6   ', N'Junge                                                                                               ', N'Aleksander                                                                                          ', 16, 7, 0, CAST(N'2017-01-05T10:07:58.660' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3367, N'SMXMHHUF6RJGEMSRQ   ', N'McBelle                                                                                             ', N'Sean                                                                                                ', 29, 3, 0, CAST(N'2017-01-05T10:09:53.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3368, N'PHVUN3XAMGUAYYXDG   ', N'Hietamies                                                                                           ', N'Perceptor                                                                                           ', 9, 3, 0, CAST(N'2017-01-05T10:10:07.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3369, N'OO2LKHJCVKHUDWPGB   ', N'Ogden                                                                                               ', N'Octane                                                                                              ', 33, 2, 0, CAST(N'2017-01-05T10:10:08.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3370, N'PCXN48O650NDPAJIO   ', N'Chubb                                                                                               ', N'Pansy                                                                                               ', 52, 8, 0, CAST(N'2017-01-05T10:10:09.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3371, N'TT6EUC2YKGSQT5EV9   ', N'Topanga                                                                                             ', N'Twinkleberry                                                                                        ', 30, 4, 0, CAST(N'2017-01-05T10:10:09.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3372, N'AS5M4IM2X041857K1   ', N'Schuler                                                                                             ', N'Aili                                                                                                ', 17, 4, 0, CAST(N'2017-01-05T10:10:11.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3373, N'AC7YO88L92I5T191N   ', N'Clarkson                                                                                            ', N'Arlen                                                                                               ', 11, 2, 0, CAST(N'2017-01-05T10:10:13.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3374, N'MG4CJ8C3GYSQ1S3A3   ', N'Goold                                                                                               ', N'Mimosa                                                                                              ', 19, 3, 0, CAST(N'2017-01-05T10:10:16.133' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3375, N'MCPYS6EI8JB8DGU9F   ', N'Chubb                                                                                               ', N'Mari                                                                                                ', 8, 4, 0, CAST(N'2017-01-05T10:10:18.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3376, N'GAKNLN5BVIAVAK5AY   ', N'Anthonyson                                                                                          ', N'Goldstar                                                                                            ', 21, 4, 0, CAST(N'2017-01-05T10:10:20.153' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3377, N'SR92V13HXDU8BYGGO   ', N'Roxelana                                                                                            ', N'Sally                                                                                               ', 6, 4, 0, CAST(N'2017-01-05T10:10:23.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3378, N'TN55FQ8B7R0PMCBI2   ', N'Naira                                                                                               ', N'Twinkleleaf                                                                                         ', 20, 4, 0, CAST(N'2017-01-05T10:10:24.463' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3379, N'HMEWW5V2JBAHWIJON   ', N'McBelle                                                                                             ', N'Haidee                                                                                              ', 10, 3, 0, CAST(N'2017-01-05T10:10:28.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3380, N'KC96S9HIYUT6O7B1L   ', N'Chubb                                                                                               ', N'Knut                                                                                                ', 28, 8, 0, CAST(N'2017-01-05T10:10:30.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3381, N'BGRLTLSR5R27C2EXY   ', N'Glittercloud                                                                                        ', N'Beeatriks                                                                                           ', 42, 7, 0, CAST(N'2017-01-05T10:10:35.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3382, N'BEGNUVOT4OKCJDVIF   ', N'Error                                                                                               ', N'Bertram                                                                                             ', 13, 3, 0, CAST(N'2017-01-05T10:10:36.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3383, N'KRAPU00YLE6QQYCNI   ', N'Rippersnapper                                                                                       ', N'Kermit                                                                                              ', 71, 5, 0, CAST(N'2017-01-05T10:10:43.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3384, N'KMWU9QTKY1E7YJQK2   ', N'Maoilios                                                                                            ', N'Knut                                                                                                ', 39, 8, 0, CAST(N'2017-01-05T10:10:45.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3385, N'RHHKCFR8IVI65UOML   ', N'Hawking                                                                                             ', N'Ross                                                                                                ', 7, 1, 0, CAST(N'2017-01-05T10:10:58.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3386, N'HKNNHWFFVW6XDVABP   ', N'Kaisa                                                                                               ', N'Hingle                                                                                              ', 36, 7, 0, CAST(N'2017-01-05T10:11:01.557' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3387, N'VBN4XHXA6RODYBXO9   ', N'Blake                                                                                               ', N'Victor                                                                                              ', 35, 4, 0, CAST(N'2017-01-05T10:11:43.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3388, N'ANKXLLB55XP0Y36G4   ', N'Nevin                                                                                               ', N'Assassin                                                                                            ', 70, 2, 0, CAST(N'2017-01-05T10:12:01.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3389, N'MLGU5JMUE89WNBYKJ   ', N'Levy                                                                                                ', N'Maitland                                                                                            ', 10, 2, 0, CAST(N'2017-01-05T10:13:15.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3390, N'KJWEC1W9NLHCAJ2B6   ', N'Junge                                                                                               ', N'Kateri                                                                                              ', 58, 5, 0, CAST(N'2017-01-05T10:15:33.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3391, N'WJKUGMF3HVQKYK9D8   ', N'Jazz                                                                                                ', N'Webster                                                                                             ', 35, 4, 0, CAST(N'2017-01-05T10:21:23.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3392, N'FSE71SDOQ8OYCPO6U   ', N'Studwick                                                                                            ', N'Fergus                                                                                              ', 38, 7, 0, CAST(N'2017-01-05T10:46:01.270' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3393, N'RKM2X5GSQQ1G6PH67   ', N'Koenig                                                                                              ', N'Robert                                                                                              ', 3, 8, 0, CAST(N'2017-01-05T10:46:02.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3394, N'MDI4HUMM057XI3B8L   ', N'Donohoe                                                                                             ', N'Methoataske                                                                                         ', 40, 2, 0, CAST(N'2017-01-05T10:46:03.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3395, N'EHJRJD0CJ2IVRQTHG   ', N'Hanley                                                                                              ', N'Eugene                                                                                              ', 4, 4, 0, CAST(N'2017-01-05T10:46:04.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3396, N'VMLFLVD23XTU2ECQC   ', N'Miles                                                                                               ', N'Viktoria                                                                                            ', 15, 3, 0, CAST(N'2017-01-05T10:46:05.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3397, N'GR4SY7BV7C1GL97GI   ', N'Roxelana                                                                                            ', N'Gentlegleam                                                                                         ', 5, 7, 0, CAST(N'2017-01-05T10:46:05.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3398, N'REJ584WLW9BBNEP1L   ', N'Error                                                                                               ', N'Rollo                                                                                               ', 64, 3, 0, CAST(N'2017-01-05T10:46:06.753' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3399, N'DGKSAMABG5M9X28AG   ', N'Goold                                                                                               ', N'Defensor                                                                                            ', 58, 7, 0, CAST(N'2017-01-05T10:46:07.573' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3400, N'MMTJ1RN4VLRN2W2O2   ', N'Mirjam                                                                                              ', N'Marika                                                                                              ', 12, 6, 0, CAST(N'2017-01-05T10:46:08.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3401, N'MCKRAEO20HBPFSPFK   ', N'Carbrey                                                                                             ', N'Morgen                                                                                              ', 41, 6, 0, CAST(N'2017-01-05T10:46:10.743' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3402, N'DFBT5FDU4PDOB19AQ   ', N'Fantine                                                                                             ', N'Daisy                                                                                               ', 18, 8, 0, CAST(N'2017-01-05T10:46:12.057' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3403, N'HMCH7XQKNLONLNRJM   ', N'Miles                                                                                               ', N'Harmony                                                                                             ', 14, 6, 0, CAST(N'2017-01-05T10:46:12.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3404, N'RJE59G4A7H0LVBBRH   ', N'Julitta                                                                                             ', N'Riina                                                                                               ', 2, 2, 0, CAST(N'2017-01-05T10:46:13.817' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3405, N'BM4XJG4CAC2T3GA8M   ', N'Meissner                                                                                            ', N'Barleyfarmer                                                                                        ', 29, 5, 0, CAST(N'2017-01-05T10:46:16.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3406, N'DL9KHX6CT4YH3C1E0   ', N'Levy                                                                                                ', N'David                                                                                               ', 9, 8, 0, CAST(N'2017-01-05T10:46:17.103' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3407, N'RJWH5MO8SD0JT0F23   ', N'Julitta                                                                                             ', N'Rosa                                                                                                ', 15, 4, 0, CAST(N'2017-01-05T10:46:17.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3408, N'AP98QPRB7ORNN3GC6   ', N'Proudfoot                                                                                           ', N'Anna                                                                                                ', 3, 8, 0, CAST(N'2017-01-05T10:46:18.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3409, N'SMQJUL2BVHN8GG7TR   ', N'McKenzie                                                                                            ', N'Sally                                                                                               ', 52, 7, 0, CAST(N'2017-01-05T10:46:18.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3410, N'RSLJ6WKAQAJO1CWMJ   ', N'Stone                                                                                               ', N'Rowan                                                                                               ', 12, 6, 0, CAST(N'2017-01-05T10:46:18.977' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3411, N'TBPOYKV3NYRE5B1UQ   ', N'Brandagamba                                                                                         ', N'Tiia                                                                                                ', 35, 4, 0, CAST(N'2017-01-05T10:46:19.383' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3412, N'DOQP7YIX2K2FVS54B   ', N'Optimus                                                                                             ', N'Dirtgreaser                                                                                         ', 6, 7, 0, CAST(N'2017-01-05T10:46:19.703' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3413, N'RF3YH0LK15MDJVMQW   ', N'Fairbairn                                                                                           ', N'Riina                                                                                               ', 21, 8, 0, CAST(N'2017-01-05T10:46:20.037' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3414, N'RZF7Q0O70O8B7X4EI   ', N'Zuleika                                                                                             ', N'Rowan                                                                                               ', 58, 7, 0, CAST(N'2017-01-05T10:46:20.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3415, N'AHA5BSBYIQOW48WIE   ', N'Heyward                                                                                             ', N'Aloysius                                                                                            ', 64, 2, 0, CAST(N'2017-01-05T10:46:20.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3416, N'FQGS207P7T4DS1OYH   ', N'Quackenbush                                                                                         ', N'Fergus                                                                                              ', 38, 1, 0, CAST(N'2017-01-05T10:46:21.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3417, N'HTT1C1AD5DOCG46L3   ', N'T hirih                                                                                             ', N'Harmony                                                                                             ', 7, 2, 0, CAST(N'2017-01-05T10:46:21.353' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3418, N'BD6AL1D04W9A36N9O   ', N'Donohoe                                                                                             ', N'Belle                                                                                               ', 70, 2, 0, CAST(N'2017-01-05T10:46:21.687' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3419, N'UV086T0RMYPU0GGDK   ', N'Viktoria                                                                                            ', N'Ultra                                                                                               ', 18, 8, 0, CAST(N'2017-01-05T10:46:22.007' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3420, N'OB7UW1UIB26CP99TN   ', N'Beckham                                                                                             ', N'Overkill                                                                                            ', 30, 4, 0, CAST(N'2017-01-05T10:46:22.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3421, N'AMWSDG64GMP75TQSG   ', N'Miles                                                                                               ', N'Ailpein                                                                                             ', 10, 3, 0, CAST(N'2017-01-05T10:46:22.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3422, N'LLQQX9SVYO6R24JWC   ', N'Lightfoot                                                                                           ', N'Lavinia                                                                                             ', 41, 8, 0, CAST(N'2017-01-05T10:46:23.037' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3423, N'DA4079VJW8QQO71KW   ', N'Animal                                                                                              ', N'Defensor                                                                                            ', 4, 7, 0, CAST(N'2017-01-05T10:46:23.373' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3424, N'KBAMYHQALB77EYT01   ', N'Bolger-Baggins                                                                                      ', N'Kim                                                                                                 ', 19, 4, 0, CAST(N'2017-01-05T10:46:23.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3425, N'HGNV8HTWKUR622BNL   ', N'Goldworthy                                                                                          ', N'Henna                                                                                               ', 36, 3, 0, CAST(N'2017-01-05T10:46:24.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3426, N'SIHTSAHO3W8QXC3RH   ', N'Itzel                                                                                               ', N'Scotty                                                                                              ', 13, 5, 0, CAST(N'2017-01-05T10:46:24.343' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3427, N'AQOGJHCFR0N8N4V8L   ', N'Quickleaf                                                                                           ', N'Annukka                                                                                             ', 42, 6, 0, CAST(N'2017-01-05T10:46:24.683' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3428, N'KCEE0WN2VK733OD7D   ', N'Clarkson                                                                                            ', N'Kateri                                                                                              ', 5, 1, 0, CAST(N'2017-01-05T10:46:25.033' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3429, N'ADEX3IIPO3S4XAUIR   ', N'Donnchadh                                                                                           ', N'Applebreeze                                                                                         ', 39, 3, 0, CAST(N'2017-01-05T10:46:25.363' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3430, N'CJKLUPDGD69LN2NYU   ', N'Jeffers                                                                                             ', N'Crippler                                                                                            ', 33, 6, 0, CAST(N'2017-01-05T10:46:25.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3431, N'PBEJEI08V8P7KCG3Q   ', N'Brandagamba                                                                                         ', N'Pollyanna                                                                                           ', 16, 8, 0, CAST(N'2017-01-05T10:46:26.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3432, N'SV4HUXBT1S910WX2J   ', N'Venom                                                                                               ', N'Scourge                                                                                             ', 2, 4, 0, CAST(N'2017-01-05T10:46:26.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3433, N'DCYFFQXLJUPMW7Q6F   ', N'Clarkson                                                                                            ', N'Dietfried                                                                                           ', 71, 8, 0, CAST(N'2017-01-05T10:46:26.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3434, N'SSXYICS9BDBORS8HT   ', N'Siiri                                                                                               ', N'Spud                                                                                                ', 17, 4, 0, CAST(N'2017-01-05T10:46:27.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3435, N'TLB8RCWVAXVMEUP5E   ', N'Lothran                                                                                             ', N'Twinkleberry                                                                                        ', 40, 1, 0, CAST(N'2017-01-05T10:46:27.343' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3436, N'PSNG2C0J9HHK2X6R0   ', N'Seedfarmer                                                                                          ', N'Pigplanter                                                                                          ', 11, 8, 0, CAST(N'2017-01-05T10:46:27.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3437, N'HT9A5STGPNKWF5LHH   ', N'Topanga                                                                                             ', N'Highbrow                                                                                            ', 20, 4, 0, CAST(N'2017-01-05T10:46:28.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3438, N'STJIL25DIWN2EB1TD   ', N'Thompson                                                                                            ', N'Snowdance                                                                                           ', 28, 2, 0, CAST(N'2017-01-05T10:46:28.573' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3439, N'WTUQ2CF9B5P7CHF79   ', N'Twinkleeyes                                                                                         ', N'Wingspan                                                                                            ', 14, 5, 0, CAST(N'2017-01-05T10:46:28.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3440, N'SBC268Q80XLR4U6NU   ', N'Blitzwing                                                                                           ', N'Sally                                                                                               ', 8, 2, 0, CAST(N'2017-01-05T10:46:29.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3441, N'FS7KCY8X8VIEKW54L   ', N'Studwick                                                                                            ', N'Fergus                                                                                              ', 38, 7, 0, CAST(N'2017-01-05T10:47:24.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3442, N'RKX34E13JLYBLK7ND   ', N'Koenig                                                                                              ', N'Robert                                                                                              ', 3, 8, 0, CAST(N'2017-01-05T10:47:25.857' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3443, N'MDCFCCMR9I96OPQ8F   ', N'Donohoe                                                                                             ', N'Methoataske                                                                                         ', 40, 2, 0, CAST(N'2017-01-05T10:47:26.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3444, N'EH1E8FSIMEL86U954   ', N'Hanley                                                                                              ', N'Eugene                                                                                              ', 4, 4, 0, CAST(N'2017-01-05T10:47:27.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3445, N'VMWGR5XCWSRPH837H   ', N'Miles                                                                                               ', N'Viktoria                                                                                            ', 15, 3, 0, CAST(N'2017-01-05T10:47:28.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3446, N'GRY4TNB2GP3ORVLGD   ', N'Roxelana                                                                                            ', N'Gentlegleam                                                                                         ', 5, 7, 0, CAST(N'2017-01-05T10:47:29.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3447, N'REGJ5QCCPJ6DAFBKQ   ', N'Error                                                                                               ', N'Rollo                                                                                               ', 64, 3, 0, CAST(N'2017-01-05T10:47:30.267' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3448, N'DGAMM9LM6E9XKG01B   ', N'Goold                                                                                               ', N'Defensor                                                                                            ', 58, 7, 0, CAST(N'2017-01-05T10:47:31.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3449, N'MMMGEID16R855O0X6   ', N'Mirjam                                                                                              ', N'Marika                                                                                              ', 12, 6, 0, CAST(N'2017-01-05T10:47:32.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3450, N'MC321YUXMPP13KNC4   ', N'Carbrey                                                                                             ', N'Morgen                                                                                              ', 41, 6, 0, CAST(N'2017-01-05T10:47:34.813' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3451, N'DF7T2FQPWYQVRA7IH   ', N'Fantine                                                                                             ', N'Daisy                                                                                               ', 18, 8, 0, CAST(N'2017-01-05T10:47:36.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3452, N'HM3VM5WJ6EWD4N1KU   ', N'Miles                                                                                               ', N'Harmony                                                                                             ', 14, 6, 0, CAST(N'2017-01-05T10:47:36.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3453, N'RJBMCAACLT2R8IUYF   ', N'Julitta                                                                                             ', N'Riina                                                                                               ', 2, 2, 0, CAST(N'2017-01-05T10:47:37.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3454, N'ARVTOS7E6X6BFR496   ', N'Ranald                                                                                              ', N'Aleksander                                                                                          ', 29, 7, 0, CAST(N'2017-01-05T10:47:40.303' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3455, N'EW3GF025U0MR4JWP9   ', N'Whitfoot                                                                                            ', N'Eugene                                                                                              ', 9, 6, 0, CAST(N'2017-01-05T10:47:40.633' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3456, N'PFGOP15STK7QRMECT   ', N'Force                                                                                               ', N'Pollyanna                                                                                           ', 15, 7, 0, CAST(N'2017-01-05T10:47:40.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3457, N'MCANASRKCMNBOW7HQ   ', N'Chubb-Baggins                                                                                       ', N'May                                                                                                 ', 3, 7, 0, CAST(N'2017-01-05T10:47:41.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3458, N'ASMVJTU7B689B0O4B   ', N'Saraste                                                                                             ', N'Alfred                                                                                              ', 52, 8, 0, CAST(N'2017-01-05T10:47:41.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3459, N'CC05STXT9PS8Y26RW   ', N'Christmas                                                                                           ', N'Chickenfarmer                                                                                       ', 12, 8, 0, CAST(N'2017-01-05T10:47:41.933' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3460, N'DMT3DMLLRR9SVCYVS   ', N'Moongaze                                                                                            ', N'Diamond                                                                                             ', 35, 8, 0, CAST(N'2017-01-05T10:47:42.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3461, N'PLKIYUNFIFIL7T3RS   ', N'Lothran                                                                                             ', N'Pounce                                                                                              ', 6, 3, 0, CAST(N'2017-01-05T10:47:42.640' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3462, N'MFWQ9VQ2HY3KUWKFD   ', N'Fairbairn                                                                                           ', N'Melissa                                                                                             ', 21, 1, 0, CAST(N'2017-01-05T10:47:42.973' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3463, N'MHRPTOET01J5R7CJA   ', N'Hogpen                                                                                              ', N'Morgen                                                                                              ', 58, 4, 0, CAST(N'2017-01-05T10:47:43.313' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3464, N'GGHMA3PG5L407RTI2   ', N'Graves                                                                                              ', N'Gordon                                                                                              ', 64, 8, 0, CAST(N'2017-01-05T10:47:43.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3465, N'RABKUVC7NNKK42MNX   ', N'Anthonyson                                                                                          ', N'Rollie                                                                                              ', 38, 5, 0, CAST(N'2017-01-05T10:47:43.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3466, N'ZANT4WFUL85IR54AJ   ', N'Alberts                                                                                             ', N'Za re                                                                                               ', 7, 2, 0, CAST(N'2017-01-05T10:47:44.307' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3467, N'RJHROO2L49L4OFWEF   ', N'Jeffers                                                                                             ', N'Rein                                                                                                ', 70, 4, 0, CAST(N'2017-01-05T10:47:44.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3468, N'MAU1XP593T62BIE21   ', N'Allen                                                                                               ', N'Mirjam                                                                                              ', 18, 6, 0, CAST(N'2017-01-05T10:47:44.967' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3469, N'OQ1NPW00RVLJ1A7I4   ', N'Quickberry                                                                                          ', N'Odell                                                                                               ', 30, 5, 0, CAST(N'2017-01-05T10:47:45.307' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3470, N'BVEVYW3MQG7HNDO5P   ', N'Venom                                                                                               ', N'Blair                                                                                               ', 10, 8, 0, CAST(N'2017-01-05T10:47:45.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3471, N'DSRMEQXHB3GE7CRPH   ', N'Slayer                                                                                              ', N'Daisy                                                                                               ', 41, 3, 0, CAST(N'2017-01-05T10:47:46.003' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3472, N'SCCYBD1766VROMKHS   ', N'Chubb                                                                                               ', N'Sleek                                                                                               ', 4, 7, 0, CAST(N'2017-01-05T10:47:46.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3473, N'GQO8LE4U4QGQCP25D   ', N'Quickleaf                                                                                           ', N'Grimalda                                                                                            ', 19, 7, 0, CAST(N'2017-01-05T10:47:46.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3474, N'RJVUCLYLSTV81HUKG   ', N'Jazz                                                                                                ', N'Rosa                                                                                                ', 36, 8, 0, CAST(N'2017-01-05T10:47:47.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3475, N'ZMTEMG2IF1YG76AL5   ', N'Mirjam                                                                                              ', N'Zyanya                                                                                              ', 13, 4, 0, CAST(N'2017-01-05T10:47:47.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3476, N'GLB9TX85WCH3U4HE5   ', N'Lashawnda                                                                                           ', N'Gentlegleam                                                                                         ', 42, 3, 0, CAST(N'2017-01-05T10:47:48.323' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3477, N'SS7RA3IBE82IBWT54   ', N'Schmid                                                                                              ', N'Scotty                                                                                              ', 5, 1, 0, CAST(N'2017-01-05T10:47:48.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3478, N'FJEHSS99F3WWO9KA4   ', N'Julitta                                                                                             ', N'Fergus                                                                                              ', 39, 4, 0, CAST(N'2017-01-05T10:47:49.367' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3479, N'JAJ4Q9B9XTTKO5AFH   ', N'Aylen                                                                                               ', N'Jochim                                                                                              ', 33, 7, 0, CAST(N'2017-01-05T10:47:49.787' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3480, N'DSAJCIE3OH3E0MEBH   ', N'Slayer                                                                                              ', N'Diamond                                                                                             ', 16, 3, 0, CAST(N'2017-01-05T10:47:50.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3481, N'SANRLIHPN2NCNOVY3   ', N'Animal                                                                                              ', N'Scourge                                                                                             ', 2, 5, 0, CAST(N'2017-01-05T10:47:50.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3482, N'SGOTUX4K2NXCE708N   ', N'Goold                                                                                               ', N'Scotty                                                                                              ', 71, 4, 0, CAST(N'2017-01-05T10:47:50.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3483, N'JTLUYYFA3RCMOYRB5   ', N'Twinkleeyes                                                                                         ', N'Johanna                                                                                             ', 17, 8, 0, CAST(N'2017-01-05T10:47:51.233' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3484, N'MSHDF3PGJNW35Q525   ', N'Schmid                                                                                              ', N'Matilda                                                                                             ', 40, 4, 0, CAST(N'2017-01-05T10:47:51.973' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3485, N'BGG0OVBFW9P8PHK0B   ', N'Gently                                                                                              ', N'Beeatriks                                                                                           ', 11, 1, 0, CAST(N'2017-01-05T10:47:52.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3486, N'TFK5GJL8TXXXTGO8H   ', N'Force                                                                                               ', N'Trey                                                                                                ', 20, 5, 0, CAST(N'2017-01-05T10:47:53.047' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3487, N'TJE31C8YCYEIQQHDE   ', N'Jeffers                                                                                             ', N'Tommie                                                                                              ', 28, 6, 0, CAST(N'2017-01-05T10:47:53.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3488, N'SCUW0ERRFOL5N7LWR   ', N'Carbrey                                                                                             ', N'Snowdance                                                                                           ', 14, 3, 0, CAST(N'2017-01-05T10:47:53.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3489, N'OSVX9TEMTAV5EPO6D   ', N'Studwick                                                                                            ', N'Overkill                                                                                            ', 8, 4, 0, CAST(N'2017-01-05T10:47:54.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3490, N'PSPB6MYN6XYRCT540   ', N'Smith                                                                                               ', N'Pollyanna                                                                                           ', 29, 5, 0, CAST(N'2017-01-05T10:56:10.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3491, N'DMK9QFMFO0FC94X8V   ', N'Marcas                                                                                              ', N'Dirk                                                                                                ', 9, 7, 0, CAST(N'2017-01-05T10:56:11.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3492, N'EBWI0FP2NJ0AW7FVH   ', N'Brandagamba                                                                                         ', N'Emmi                                                                                                ', 15, 5, 0, CAST(N'2017-01-05T10:56:11.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3493, N'HGQGK8CT6LGVTH80D   ', N'Goold                                                                                               ', N'Harmony                                                                                             ', 3, 1, 0, CAST(N'2017-01-05T10:56:11.767' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3494, N'NV4OU9FG561TGJONY   ', N'Vorath                                                                                              ', N'Nydia                                                                                               ', 52, 4, 0, CAST(N'2017-01-05T10:56:12.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3495, N'MCACLGA7T8GB6CH32   ', N'Cyra                                                                                                ', N'Morgen                                                                                              ', 12, 7, 0, CAST(N'2017-01-05T10:56:12.437' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3496, N'AENKVGDURS29SFYQM   ', N'Error                                                                                               ', N'Aleksandra                                                                                          ', 35, 3, 0, CAST(N'2017-01-05T10:56:12.767' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3497, N'BJ7WS3GKMVGMAORIW   ', N'Jacobson                                                                                            ', N'Belle                                                                                               ', 6, 4, 0, CAST(N'2017-01-05T10:56:13.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3498, N'TS70YA6V8XNQ1UQ5P   ', N'Sempers                                                                                             ', N'Terje                                                                                               ', 21, 2, 0, CAST(N'2017-01-05T10:56:13.813' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3499, N'SACMWQ9VQPKF1QHB3   ', N'Allsopp                                                                                             ', N'Silvernose                                                                                          ', 58, 5, 0, CAST(N'2017-01-05T10:56:14.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3500, N'LVG9U8BV9GH31M7GH   ', N'Vorath                                                                                              ', N'Lalla                                                                                               ', 64, 8, 0, CAST(N'2017-01-05T10:56:14.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3501, N'MKIDT5TX0T70FO8EY   ', N'Kaisa                                                                                               ', N'Mira                                                                                                ', 38, 2, 0, CAST(N'2017-01-05T10:56:15.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3502, N'DBW60HK0X8WSM9ANN   ', N'Blake                                                                                               ', N'Devastator                                                                                          ', 7, 1, 0, CAST(N'2017-01-05T10:56:15.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3503, N'OB9WMKN3CJNWHCBXQ   ', N'Breakdown                                                                                           ', N'Odell                                                                                               ', 70, 3, 0, CAST(N'2017-01-05T10:56:16.173' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3504, N'ROGJDSIT1M3E644DT   ', N'Optimus                                                                                             ', N'Rowan                                                                                               ', 18, 6, 0, CAST(N'2017-01-05T10:56:16.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3505, N'GQ6HT8TG57N9MOLCM   ', N'Quickberry                                                                                          ', N'Grapple                                                                                             ', 30, 7, 0, CAST(N'2017-01-05T10:56:16.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3506, N'PV7I2MGBKSX9D6OL7   ', N'Viktoria                                                                                            ', N'Pollyanna                                                                                           ', 10, 2, 0, CAST(N'2017-01-05T10:56:17.223' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3507, N'ABJRBMJXICI71968S   ', N'Biceps                                                                                              ', N'Anna                                                                                                ', 41, 5, 0, CAST(N'2017-01-05T10:56:17.553' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3508, N'CSW0LNMKHW46NCNVE   ', N'Seton                                                                                               ', N'Clearkiss                                                                                           ', 4, 6, 0, CAST(N'2017-01-05T10:56:17.883' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3509, N'SQQX6G9C0YKQKMG0A   ', N'Quickberry                                                                                          ', N'Silvernose                                                                                          ', 19, 4, 0, CAST(N'2017-01-05T10:56:18.210' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3510, N'RA37FGC0YI5O8OXNV   ', N'Albert                                                                                              ', N'Rollie                                                                                              ', 36, 2, 0, CAST(N'2017-01-05T10:56:18.533' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3511, N'WLW509YQHKLA50QRR   ', N'Lightfoot                                                                                           ', N'Wingspan                                                                                            ', 13, 1, 0, CAST(N'2017-01-05T10:56:18.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3512, N'PDT64AAGHO0JERJV9   ', N'Donohoe                                                                                             ', N'Prisca                                                                                              ', 42, 7, 0, CAST(N'2017-01-05T10:56:19.253' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3513, N'DADI2WD7CSEXV1CNJ   ', N'Anthonyson                                                                                          ', N'Double                                                                                              ', 5, 2, 0, CAST(N'2017-01-05T10:56:19.610' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3514, N'CGK5S58X1VTFLT43M   ', N'Glitterfluff                                                                                        ', N'Crush                                                                                               ', 39, 8, 0, CAST(N'2017-01-05T10:56:19.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3515, N'TMXE35BK0FFD8VLQ8   ', N'McBelle                                                                                             ', N'Titania                                                                                             ', 33, 4, 0, CAST(N'2017-01-05T10:56:20.273' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3516, N'ABRCNXXCIHUX57EU4   ', N'Brown                                                                                               ', N'Aili                                                                                                ', 16, 8, 0, CAST(N'2017-01-05T10:56:20.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3517, N'SS4KWX2YH1GWS9VIP   ', N'Sideswipe                                                                                           ', N'Sofia                                                                                               ', 2, 5, 0, CAST(N'2017-01-05T10:56:20.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3518, N'ASXJHQOQ03WHPKOML   ', N'Smith                                                                                               ', N'Anni                                                                                                ', 71, 5, 0, CAST(N'2017-01-05T10:56:21.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3519, N'MFBRQQRDXMHFCM697   ', N'Fraser                                                                                              ', N'Morgen                                                                                              ', 17, 2, 0, CAST(N'2017-01-05T10:56:21.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3520, N'AHN11RU1W72D0PNWR   ', N'Hornblower                                                                                          ', N'Ailpein                                                                                             ', 40, 6, 0, CAST(N'2017-01-05T10:56:21.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3521, N'KSHYLJHSF8IYW0G1O   ', N'Snowfeather                                                                                         ', N'Kadri                                                                                               ', 11, 7, 0, CAST(N'2017-01-05T10:56:22.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3522, N'HH2BI6KIACXCEA9SY   ', N'Hogpen                                                                                              ', N'Henna                                                                                               ', 20, 6, 0, CAST(N'2017-01-05T10:56:22.723' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3523, N'MOQPBOULUONC1UAF9   ', N'Optimus                                                                                             ', N'Marika                                                                                              ', 28, 6, 0, CAST(N'2017-01-05T10:56:23.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3524, N'CSA29BXBPS3QI537J   ', N'Starscream                                                                                          ', N'Carbry                                                                                              ', 14, 5, 0, CAST(N'2017-01-05T10:56:23.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3525, N'GAOSO5S6AFCN247RB   ', N'Anthonyson                                                                                          ', N'Gordon                                                                                              ', 8, 6, 0, CAST(N'2017-01-05T10:56:24.083' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3526, N'FSNN4N45DP2V2Y3HJ   ', N'Studwick                                                                                            ', N'Fergus                                                                                              ', 38, 7, 0, CAST(N'2017-01-07T06:38:32.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3527, N'RKOV9RDIP5YV6732S   ', N'Koenig                                                                                              ', N'Robert                                                                                              ', 3, 8, 0, CAST(N'2017-01-07T06:38:33.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3528, N'MDBTB5QIWOR5YGJOR   ', N'Donohoe                                                                                             ', N'Methoataske                                                                                         ', 40, 2, 0, CAST(N'2017-01-07T06:38:34.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3529, N'EHH23PJDKQPRIHOTG   ', N'Hanley                                                                                              ', N'Eugene                                                                                              ', 4, 4, 0, CAST(N'2017-01-07T06:38:35.463' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3530, N'VMB3TPWFOTDF5XGL5   ', N'Miles                                                                                               ', N'Viktoria                                                                                            ', 15, 3, 0, CAST(N'2017-01-07T06:38:36.413' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3531, N'GRAQ3HIE2F6LPOWKB   ', N'Roxelana                                                                                            ', N'Gentlegleam                                                                                         ', 5, 7, 0, CAST(N'2017-01-07T06:38:37.397' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3532, N'RET67BBGIKS3W5OYD   ', N'Error                                                                                               ', N'Rollo                                                                                               ', 64, 3, 0, CAST(N'2017-01-07T06:38:38.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3533, N'DGTSF3WFV5L8HV5XJ   ', N'Goold                                                                                               ', N'Defensor                                                                                            ', 58, 7, 0, CAST(N'2017-01-07T06:38:39.277' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3534, N'MMTGOVHD9PED3MLVP   ', N'Mirjam                                                                                              ', N'Marika                                                                                              ', 12, 6, 0, CAST(N'2017-01-07T06:38:40.213' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3535, N'TF6R43BCSC6FGV163   ', N'Force                                                                                               ', N'Trey                                                                                                ', 64, 5, 0, CAST(N'2017-01-07T06:38:41.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3536, N'RD4EK44K1LGRBPFTK   ', N'Da''ronda                                                                                            ', N'Rosa                                                                                                ', 10, 2, 0, CAST(N'2017-01-07T06:38:42.210' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3537, N'CN32TWPIE69WWHVSQ   ', N'Naira                                                                                               ', N'Chickenchaser                                                                                       ', 29, 5, 0, CAST(N'2017-01-07T06:38:43.157' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3538, N'JBGD94IHYR1YAPC34   ', N'Breakdown                                                                                           ', N'Jemmy                                                                                               ', 13, 3, 0, CAST(N'2017-01-07T06:38:44.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3539, N'ASF1IV4GCCT4UGS1A   ', N'Sugarfeather                                                                                        ', N'Arnie                                                                                               ', 70, 8, 0, CAST(N'2017-01-07T06:38:45.033' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3540, N'MCFNRNOFPWMAF790G   ', N'Cyra                                                                                                ', N'Maitland                                                                                            ', 39, 6, 0, CAST(N'2017-01-07T06:38:45.953' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3541, N'PMFB1GAD4IFF0YOYM   ', N'McRae                                                                                               ', N'Pollyanna                                                                                           ', 71, 5, 0, CAST(N'2017-01-07T06:38:46.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3542, N'DM8CQFNG7L34NFGPB   ', N'Manninen                                                                                            ', N'Dirtgreaser                                                                                         ', 17, 5, 0, CAST(N'2017-01-07T06:38:47.857' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3543, N'RTLO7MGER7U60NW0O   ', N'T k                                                                                                 ', N'Ross                                                                                                ', 71, 1, 0, CAST(N'2017-01-07T06:38:48.803' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3544, N'RSTM95ATDQEQKTONT   ', N'Stone                                                                                               ', N'Rowan                                                                                               ', 29, 6, 0, CAST(N'2017-01-07T06:38:50.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3545, N'TB6UJ5DHCB0P7W6BE   ', N'Brandagamba                                                                                         ', N'Tiia                                                                                                ', 9, 4, 0, CAST(N'2017-01-07T06:38:51.247' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3546, N'DO0S3X18UCFA47YFB   ', N'Optimus                                                                                             ', N'Dirtgreaser                                                                                         ', 15, 7, 0, CAST(N'2017-01-07T06:38:51.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3547, N'RF7GU6V0IFVRT0RVE   ', N'Fairbairn                                                                                           ', N'Riina                                                                                               ', 3, 8, 0, CAST(N'2017-01-07T06:38:51.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3548, N'RZJO46YMH0GPG29I0   ', N'Zuleika                                                                                             ', N'Rowan                                                                                               ', 52, 7, 0, CAST(N'2017-01-07T06:38:52.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3549, N'AH412S2DC3U3YC2AA   ', N'Heyward                                                                                             ', N'Aloysius                                                                                            ', 12, 2, 0, CAST(N'2017-01-07T06:38:52.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3550, N'FQXYMLO4U5BOUMTF6   ', N'Quackenbush                                                                                         ', N'Fergus                                                                                              ', 35, 1, 0, CAST(N'2017-01-07T06:38:52.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3551, N'HTA8VLRRTOWMIPB2R   ', N'T hirih                                                                                             ', N'Harmony                                                                                             ', 6, 2, 0, CAST(N'2017-01-07T06:38:53.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3552, N'BDNG6LUER9HK6SSPC   ', N'Donohoe                                                                                             ', N'Belle                                                                                               ', 21, 2, 0, CAST(N'2017-01-07T06:38:53.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3553, N'UVT3WTP5GBW2UKL5F   ', N'Viktoria                                                                                            ', N'Ultra                                                                                               ', 58, 8, 0, CAST(N'2017-01-07T06:38:53.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3554, N'OB1QN1KV5ECJKDELJ   ', N'Beckham                                                                                             ', N'Overkill                                                                                            ', 64, 4, 0, CAST(N'2017-01-07T06:38:54.253' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3555, N'AMEYX1NJ4XXH7FV84   ', N'Miles                                                                                               ', N'Ailpein                                                                                             ', 38, 3, 0, CAST(N'2017-01-07T06:38:54.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3556, N'LL8XITBAM0E34POD0   ', N'Lightfoot                                                                                           ', N'Lavinia                                                                                             ', 7, 8, 0, CAST(N'2017-01-07T06:38:54.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3557, N'DAK6RUEXLKY1RS60L   ', N'Animal                                                                                              ', N'Defensor                                                                                            ', 70, 7, 0, CAST(N'2017-01-07T06:38:55.257' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3558, N'KBRTI29OAMEIGLYGO   ', N'Bolger-Baggins                                                                                      ', N'Kim                                                                                                 ', 18, 4, 0, CAST(N'2017-01-07T06:38:55.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3559, N'HG42S2CB87YG4NG4A   ', N'Goldworthy                                                                                          ', N'Henna                                                                                               ', 30, 3, 0, CAST(N'2017-01-07T06:38:55.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3560, N'SIY0DUY3Q8F11X886   ', N'Itzel                                                                                               ', N'Scotty                                                                                              ', 10, 5, 0, CAST(N'2017-01-07T06:38:56.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3561, N'AQB9MU2PPS10O1PUR   ', N'Quickleaf                                                                                           ', N'Annukka                                                                                             ', 41, 6, 0, CAST(N'2017-01-07T06:38:56.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3562, N'KC577NOH8TGKKBI0N   ', N'Clarkson                                                                                            ', N'Kateri                                                                                              ', 4, 1, 0, CAST(N'2017-01-07T06:38:56.903' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3563, N'AD5QA9K51D2MFW0B2   ', N'Donnchadh                                                                                           ', N'Applebreeze                                                                                         ', 19, 3, 0, CAST(N'2017-01-07T06:38:57.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3564, N'CJUOQOUR5XMHVGHAT   ', N'Jeffers                                                                                             ', N'Crippler                                                                                            ', 36, 6, 0, CAST(N'2017-01-07T06:38:57.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3565, N'PBOMBHIJN032SRAEP   ', N'Brandagamba                                                                                         ', N'Pollyanna                                                                                           ', 13, 8, 0, CAST(N'2017-01-07T06:38:57.897' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3566, N'SV2UKHL6MJN0FTR2B   ', N'Venom                                                                                               ', N'Scourge                                                                                             ', 42, 4, 0, CAST(N'2017-01-07T06:38:58.213' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3567, N'DCVS5A8X5L4KC5K67   ', N'Clarkson                                                                                            ', N'Dietfried                                                                                           ', 5, 8, 0, CAST(N'2017-01-07T06:38:58.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3568, N'SS82EABK45OJ072SS   ', N'Siiri                                                                                               ', N'Spud                                                                                                ', 39, 4, 0, CAST(N'2017-01-07T06:38:58.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3569, N'TLLAOBE72PAHMAJGE   ', N'Lothran                                                                                             ', N'Twinkleberry                                                                                        ', 33, 1, 0, CAST(N'2017-01-07T06:38:59.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3570, N'PSF9931YKRQ2JKCKA   ', N'Seedfarmer                                                                                          ', N'Pigplanter                                                                                          ', 16, 8, 0, CAST(N'2017-01-07T06:38:59.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3571, N'HTRHI44LJBB17NT8V   ', N'Topanga                                                                                             ', N'Highbrow                                                                                            ', 2, 4, 0, CAST(N'2017-01-07T06:38:59.853' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3572, N'STLF3WRD2DRL4XLCR   ', N'Thompson                                                                                            ', N'Snowdance                                                                                           ', 71, 2, 0, CAST(N'2017-01-07T06:39:00.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3573, N'WTYOCWU11WCJR130C   ', N'Twinkleeyes                                                                                         ', N'Wingspan                                                                                            ', 17, 5, 0, CAST(N'2017-01-07T06:39:00.513' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3574, N'SBBWMWXNYGWIE3KMX   ', N'Blitzwing                                                                                           ', N'Sally                                                                                               ', 40, 2, 0, CAST(N'2017-01-07T06:39:00.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3575, N'BO5U7PKFHID3BDDRT   ', N'Ogden                                                                                               ', N'Blair                                                                                               ', 11, 2, 0, CAST(N'2017-01-07T06:39:01.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3576, N'CCI4GPN2G2Y1YGUEF   ', N'Cringleberry                                                                                        ', N'Chickenchaser                                                                                       ', 20, 3, 0, CAST(N'2017-01-07T06:39:01.497' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3577, N'PMINJBIP9LK3T1CPT   ', N'Moongaze                                                                                            ', N'Phoenix                                                                                             ', 28, 1, 0, CAST(N'2017-01-07T06:39:01.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3578, N'BJOAAJDGXO0KIT56W   ', N'Jeffers                                                                                             ', N'Blair                                                                                               ', 14, 5, 0, CAST(N'2017-01-07T06:39:02.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3579, N'SS2JKJG3W8KI6WMSH   ', N'Sandheaver                                                                                          ', N'Savanna                                                                                             ', 8, 1, 0, CAST(N'2017-01-07T06:39:02.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3580, N'KW0UXE8A0PUHUTTVJ   ', N'Wheeljack                                                                                           ', N'Kateri                                                                                              ', 36, 3, 0, CAST(N'2017-01-07T06:45:35.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3581, N'KJHA8G9LAJX6CDI1W   ', N'Jacobson                                                                                            ', N'Kateri                                                                                              ', 3, 4, 0, CAST(N'2017-01-07T06:45:36.647' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3582, N'GBHWH9UKN5QBX4YY3   ', N'Badcock                                                                                             ', N'Grayson                                                                                             ', 38, 3, 0, CAST(N'2017-01-07T06:45:37.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3583, N'BFT9WGNI8QIDBCF9G   ', N'Force                                                                                               ', N'Belle                                                                                               ', 4, 6, 0, CAST(N'2017-01-07T06:45:38.527' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3584, N'RSNANF1LBT62XT715   ', N'Siiri                                                                                               ', N'Riina                                                                                               ', 28, 4, 0, CAST(N'2017-01-07T06:45:39.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3585, N'CK7PQ9TMR0SJ59YF7   ', N'Kiiskinen                                                                                           ', N'Carbry                                                                                              ', 18, 6, 0, CAST(N'2017-01-07T06:45:40.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3586, N'RMJ27GNKBLKKIHFPK   ', N'Maoilios                                                                                            ', N'Rowan                                                                                               ', 11, 8, 0, CAST(N'2017-01-07T06:45:41.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3587, N'PAJOG88JO6DQ39UOQ   ', N'Age                                                                                                 ', N'Pigplanter                                                                                          ', 71, 3, 0, CAST(N'2017-01-07T06:45:42.353' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3588, N'UMICO0TI3Q6VN0BMW   ', N'Marika                                                                                              ', N'Ultra                                                                                               ', 58, 2, 0, CAST(N'2017-01-07T06:45:43.287' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3589, N'PMIYXSFHGBY19QRL3   ', N'McNaughton                                                                                          ', N'Punch                                                                                               ', 18, 1, 0, CAST(N'2017-01-07T06:45:44.223' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3590, N'SS3W7F0PIK9HC36XD   ', N'Sempers                                                                                             ', N'Sheard                                                                                              ', 14, 7, 0, CAST(N'2017-01-07T06:45:45.257' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3591, N'RJ7OGWDM3NJ4QVVPG   ', N'Julitta                                                                                             ', N'Riina                                                                                               ', 2, 2, 0, CAST(N'2017-01-07T09:27:46.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3592, N'AL9D9P2BINXF6USRC   ', N'Lashawnda                                                                                           ', N'Arabella                                                                                            ', 36, 8, 0, CAST(N'2017-01-07T09:27:51.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3593, N'HSKF163IB01QR6HB3   ', N'Smith                                                                                               ', N'Harmony                                                                                             ', 8, 1, 0, CAST(N'2017-01-07T09:28:00.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3594, N'DHGONJYXMMOSP6NG1   ', N'Hofmann                                                                                             ', N'Dirk                                                                                                ', 17, 5, 0, CAST(N'2017-01-07T09:28:05.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3595, N'PGN1E2BU21CBNATJ7   ', N'Griffin                                                                                             ', N'Peggy-Rae                                                                                           ', 3, 3, 0, CAST(N'2017-01-07T09:28:07.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3596, N'VQE76AEN7QE7WQ8Y9   ', N'Quickmoon                                                                                           ', N'Victor                                                                                              ', 9, 1, 0, CAST(N'2017-01-07T09:28:15.480' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3597, N'TDR88AWA197OCOBRR   ', N'Donnchadh                                                                                           ', N'Trey                                                                                                ', 11, 2, 0, CAST(N'2017-01-07T09:28:43.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3598, N'PA1VI99HB3XSDF1GO   ', N'Aylen                                                                                               ', N'Piloqutinnguaq                                                                                      ', 21, 2, 0, CAST(N'2017-01-07T09:28:50.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3599, N'KLAKSG6X1K0GWFA0H   ', N'Leavitt                                                                                             ', N'Katariina                                                                                           ', 40, 8, 0, CAST(N'2017-01-07T09:28:53.687' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3600, N'MSUI8R7H76U51CP8H   ', N'Schmid                                                                                              ', N'Maimu                                                                                               ', 16, 2, 0, CAST(N'2017-01-07T09:29:04.463' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3601, N'GJVGSUR5I8QEHH5EP   ', N'Jeffers                                                                                             ', N'Grapple                                                                                             ', 7, 6, 0, CAST(N'2017-01-07T09:29:07.133' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3602, N'SD1RGN017ROXDQ44A   ', N'Dulcinea                                                                                            ', N'Savanna                                                                                             ', 13, 1, 0, CAST(N'2017-01-07T09:29:15.177' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3603, N'DSN5X1K8NLFY7YU4E   ', N'Sherman                                                                                             ', N'Daisy                                                                                               ', 15, 8, 0, CAST(N'2017-01-07T09:29:21.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3604, N'BSVITE2RKRD22WIE3   ', N'Sempers                                                                                             ', N'Belle                                                                                               ', 29, 1, 0, CAST(N'2017-01-07T09:29:43.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3605, N'AGRQATT4Q06JQ18R5   ', N'Glittersheen                                                                                        ', N'Alfred                                                                                              ', 20, 4, 0, CAST(N'2017-01-07T09:29:44.683' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3606, N'AH95KWUE1TA89KXVI   ', N'Hornblower                                                                                          ', N'Applebreeze                                                                                         ', 42, 7, 0, CAST(N'2017-01-07T09:29:45.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3607, N'SHTGIACVFAD28K7SW   ', N'Hagstr m                                                                                            ', N'Sally                                                                                               ', 71, 5, 0, CAST(N'2017-01-07T09:29:49.343' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3608, N'ZQGH0YD9LHB4B5BF3   ', N'Quickmoon                                                                                           ', N'Zyanya                                                                                              ', 14, 5, 0, CAST(N'2017-01-07T09:29:57.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3609, N'GZ3EA0HTBAG1N0EOP   ', N'Zaragamba                                                                                           ', N'Grapple                                                                                             ', 38, 6, 0, CAST(N'2017-01-07T09:30:10.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3610, N'SHJR0827CPN2II70W   ', N'Hawking                                                                                             ', N'Silvernose                                                                                          ', 28, 5, 0, CAST(N'2017-01-07T09:30:21.327' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3611, N'KK4FN0LI6LOA4YK9O   ', N'Kaja                                                                                                ', N'Kermit                                                                                              ', 12, 6, 0, CAST(N'2017-01-07T09:30:36.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3612, N'OMSF7WJF6CP98UTIN   ', N'McKenzie                                                                                            ', N'Oatchaser                                                                                           ', 19, 5, 0, CAST(N'2017-01-07T09:30:44.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3613, N'GRYPORN9QIR8V8DGC   ', N'Ranald                                                                                              ', N'Gumphauler                                                                                          ', 41, 3, 0, CAST(N'2017-01-07T09:30:48.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3614, N'WRFV3MR1LUK3BE8IY   ', N'Rowander                                                                                            ', N'Wingspan                                                                                            ', 52, 6, 0, CAST(N'2017-01-07T09:30:57.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3615, N'MISHTVYEM95P1R45I   ', N'Ibbott                                                                                              ', N'Myrtle                                                                                              ', 64, 1, 0, CAST(N'2017-01-07T09:31:03.877' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3616, N'WF38H30K93GM2QJ9A   ', N'Force                                                                                               ', N'Wingspan                                                                                            ', 58, 7, 0, CAST(N'2017-01-07T09:31:33.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3617, N'RS2O8H6VAGGOSWRE5   ', N'Sackville                                                                                           ', N'Rowan                                                                                               ', 30, 2, 0, CAST(N'2017-01-07T09:31:55.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3618, N'RODXF1RQYSM7WEKJ2   ', N'Ogden                                                                                               ', N'Runabout                                                                                            ', 33, 4, 0, CAST(N'2017-01-07T09:31:59.633' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3619, N'TD6WXQ1U8NFD0VGGM   ', N'Donnchadh                                                                                           ', N'Trey                                                                                                ', 11, 2, 0, CAST(N'2017-01-09T07:10:48.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3620, N'PA06QD4IEXLL80JBU   ', N'Aylen                                                                                               ', N'Piloqutinnguaq                                                                                      ', 21, 2, 0, CAST(N'2017-01-09T07:10:54.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3621, N'KL8Q3NJWD3XCDWRX6   ', N'Leavitt                                                                                             ', N'Katariina                                                                                           ', 40, 8, 0, CAST(N'2017-01-09T07:10:57.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3622, N'AGTRS3ABN6R2A6HRC   ', N'Gentlemoon                                                                                          ', N'Anna                                                                                                ', 8, 8, 0, CAST(N'2017-01-09T07:11:02.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3623, N'MB4KRMAYI88G5IFEI   ', N'Bolger-Baggins                                                                                      ', N'Melissa                                                                                             ', 10, 7, 0, CAST(N'2017-01-09T07:11:03.223' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3624, N'DSIL1MRLHTFSXPSQR   ', N'Sugarfeather                                                                                        ', N'Dietfried                                                                                           ', 41, 2, 0, CAST(N'2017-01-09T07:11:08.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3625, N'DS8RYDNWXV9F1INQ1   ', N'Schmid                                                                                              ', N'Dirtgreaser                                                                                         ', 38, 5, 0, CAST(N'2017-01-09T07:11:13.720' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3626, N'UF42LQKC9HXHXJTVY   ', N'Fantine                                                                                             ', N'Ultra                                                                                               ', 20, 7, 0, CAST(N'2017-01-09T07:11:19.127' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3627, N'BPSGM578RRANMY10S   ', N'Proudfoot                                                                                           ', N'Beeatriks                                                                                           ', 71, 8, 0, CAST(N'2017-01-09T07:11:29.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3628, N'CQ0XPREJWM1UI6MHM   ', N'Quickmoon                                                                                           ', N'Crazy                                                                                               ', 33, 2, 0, CAST(N'2017-01-09T07:11:34.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3629, N'BHP28LUINQSQ14WN3   ', N'Hawking                                                                                             ', N'Belle                                                                                               ', 3, 4, 0, CAST(N'2017-01-09T07:11:42.997' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3630, N'TS6HG8D1NCHY02XBR   ', N'Sideswipe                                                                                           ', N'Trey                                                                                                ', 7, 3, 0, CAST(N'2017-01-09T07:11:47.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3631, N'ACXKRJ1H44F4ONRW2   ', N'Carbrey                                                                                             ', N'Angelica                                                                                            ', 19, 1, 0, CAST(N'2017-01-09T07:11:58.653' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3632, N'OS7OHS563WEIANBT0   ', N'Stone                                                                                               ', N'Outi                                                                                                ', 36, 2, 0, CAST(N'2017-01-09T07:12:08.037' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3633, N'DRONLQB32D8LS3W2R   ', N'Rock                                                                                                ', N'Dirk                                                                                                ', 28, 5, 0, CAST(N'2017-01-09T07:12:12.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3634, N'RKUO1O333NGHDJK2Y   ', N'Keith                                                                                               ', N'Rhino                                                                                               ', 18, 5, 0, CAST(N'2017-01-09T07:12:15.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3635, N'FB8DX50RO488T3GCA   ', N'Baphomet                                                                                            ', N'Fergus                                                                                              ', 39, 5, 0, CAST(N'2017-01-09T07:12:22.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3636, N'LG3NR0POB3P0JF32F   ', N'Graves                                                                                              ', N'Lalia                                                                                               ', 2, 3, 0, CAST(N'2017-01-09T07:12:24.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3637, N'PSAILVB02CN1UV8K3   ', N'Sideswipe                                                                                           ', N'Peggy-Rae                                                                                           ', 29, 1, 0, CAST(N'2017-01-09T07:12:29.353' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3638, N'HG9CW21C2GM8I0HRX   ', N'Gears                                                                                               ', N'Hannah                                                                                              ', 70, 8, 0, CAST(N'2017-01-09T07:12:38.340' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3639, N'ALP3MHC1AV9A5PX6U   ', N'Leelo                                                                                               ', N'Aili                                                                                                ', 58, 7, 0, CAST(N'2017-01-09T07:12:41.823' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3640, N'BSOG29X03JTIOFOO4   ', N'Sparklemoon                                                                                         ', N'Butler                                                                                              ', 16, 1, 0, CAST(N'2017-01-09T07:12:50.233' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3641, N'ALKBF1H8TJTI3Q3GQ   ', N'Levy                                                                                                ', N'Almira                                                                                              ', 42, 2, 0, CAST(N'2017-01-09T07:13:02.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3642, N'FLNQGJ9XEHRWIJHEA   ', N'Leelo                                                                                               ', N'Fluttersheen                                                                                        ', 9, 5, 0, CAST(N'2017-01-09T07:13:08.300' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3643, N'HNRKIJGCQAFFROFL2   ', N'Nevin                                                                                               ', N'Highbrow                                                                                            ', 6, 2, 0, CAST(N'2017-01-09T07:13:45.587' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3644, N'FBP7YK9KXJPRNJSAI   ', N'Brown                                                                                               ', N'Fluttersheen                                                                                        ', 64, 6, 0, CAST(N'2017-01-09T07:13:46.640' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3645, N'GEASCU6KR6UY7F4OC   ', N'Error                                                                                               ', N'Gentlegleam                                                                                         ', 14, 2, 0, CAST(N'2017-01-09T07:14:17.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3646, N'QA5BQIYYYU1Y4MSXM   ', N'Albert                                                                                              ', N'Quickdance                                                                                          ', 30, 7, 0, CAST(N'2017-01-09T07:14:21.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3647, N'BSTLUGLL0Y2OWLMLN   ', N'Sparklemoon                                                                                         ', N'Buffy                                                                                               ', 13, 7, 0, CAST(N'2017-01-09T07:14:27.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3648, N'SLQLY9B2JF5FO4VT9   ', N'Leavitt                                                                                             ', N'Spud                                                                                                ', 17, 3, 0, CAST(N'2017-01-09T07:14:31.097' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3649, N'HL07I60PC2GJNJ792   ', N'Leavitt                                                                                             ', N'Haidee                                                                                              ', 52, 1, 0, CAST(N'2017-01-09T07:15:32.330' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3650, N'DGP5D87LN56EOG6UP   ', N'Glittersheen                                                                                        ', N'Dirk                                                                                                ', 4, 3, 0, CAST(N'2017-01-09T07:16:34.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3651, N'TAKHONHF3AUWQFL7U   ', N'Anthonyson                                                                                          ', N'Tiia                                                                                                ', 5, 1, 0, CAST(N'2017-01-09T07:16:43.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3652, N'MDGSPVVD230IS1SUK   ', N'Donohoe                                                                                             ', N'Marika                                                                                              ', 35, 6, 0, CAST(N'2017-01-09T07:17:46.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3653, N'ACEFRNHB9KER0JXA0   ', N'Cyra                                                                                                ', N'Atomic                                                                                              ', 12, 3, 0, CAST(N'2017-01-09T07:18:10.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3654, N'DG3DVN0VJDC0IKMP7   ', N'Goldworthy                                                                                          ', N'Dina                                                                                                ', 15, 7, 0, CAST(N'2017-01-09T07:18:20.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3655, N'WTC3CG8FVBABM7OGA   ', N'T k                                                                                                 ', N'Wingspan                                                                                            ', 18, 3, 0, CAST(N'2017-01-09T08:56:30.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3656, N'GP2S0WG9N0NXPOWPC   ', N'Philomel                                                                                            ', N'Gobnata                                                                                             ', 29, 7, 0, CAST(N'2017-01-11T19:47:05.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3657, N'SMR7CQV802MQANWDQ   ', N'Miles                                                                                               ', N'Sheard                                                                                              ', 9, 7, 0, CAST(N'2017-01-11T19:47:05.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3658, N'DGLLTXNCPKHACD868   ', N'Goold                                                                                               ', N'Defensor                                                                                            ', 15, 7, 0, CAST(N'2017-01-11T19:47:05.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3659, N'KNYA1DVBVLG65U8HF   ', N'Naira                                                                                               ', N'Kerr                                                                                                ', 3, 6, 0, CAST(N'2017-01-11T19:47:05.683' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3660, N'GO5DOYVER5ALY2JM5   ', N'Ogden                                                                                               ', N'Gears                                                                                               ', 52, 1, 0, CAST(N'2017-01-11T19:47:05.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3661, N'GTCHDLVHOP51S9UQT   ', N'Thompson                                                                                            ', N'Grimalda                                                                                            ', 12, 7, 0, CAST(N'2017-01-11T19:47:05.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3662, N'DSP6J14HTP4XLQU21   ', N'Stone                                                                                               ', N'Daisy                                                                                               ', 35, 3, 0, CAST(N'2017-01-11T19:47:05.767' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3663, N'MCW97M4KQAXDFY67Q   ', N'Christmas                                                                                           ', N'Marika                                                                                              ', 6, 1, 0, CAST(N'2017-01-11T19:47:05.787' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3664, N'CL9YE2BJWBW98G6IX   ', N'Lightfoot                                                                                           ', N'Crush                                                                                               ', 21, 4, 0, CAST(N'2017-01-11T19:47:05.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3665, N'BGG22NBMSURP2NGNM   ', N'Gentlemoon                                                                                          ', N'Buffy                                                                                               ', 58, 5, 0, CAST(N'2017-01-11T19:47:05.827' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3666, N'DATQ93JMYVQLU5GYT   ', N'Alberts                                                                                             ', N'Diamond                                                                                             ', 64, 1, 0, CAST(N'2017-01-11T19:47:05.847' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3667, N'OCN5QABQOEL5VURRB   ', N'Chubb-Baggins                                                                                       ', N'Oatchaser                                                                                           ', 38, 6, 0, CAST(N'2017-01-11T19:47:05.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3668, N'MF0UWOJPUFK1OCR4I   ', N'Force                                                                                               ', N'Marika                                                                                              ', 7, 1, 0, CAST(N'2017-01-11T19:47:05.883' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3669, N'BL7XLBJSQ0EGIJ388   ', N'Longhole                                                                                            ', N'Buffy                                                                                               ', 70, 2, 0, CAST(N'2017-01-11T19:47:05.903' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3670, N'TAKMRPRSW1EDB13JF   ', N'Age                                                                                                 ', N'Tasgall                                                                                             ', 18, 8, 0, CAST(N'2017-01-11T19:47:05.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3671, N'BVWCX5YR32D94J3VM   ', N'Venom                                                                                               ', N'Belle                                                                                               ', 30, 3, 0, CAST(N'2017-01-11T19:47:05.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3672, N'OVRQFCRVSK8S58EO4   ', N'Vorath                                                                                              ', N'Outi                                                                                                ', 10, 8, 0, CAST(N'2017-01-11T19:47:05.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3673, N'CBYT4YQYO4280GPST   ', N'Blitzwing                                                                                           ', N'Chickenfarmer                                                                                       ', 41, 2, 0, CAST(N'2017-01-11T19:47:05.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3674, N'SABIADYXU514RXP51   ', N'Allsopp                                                                                             ', N'Sacnite                                                                                             ', 4, 4, 0, CAST(N'2017-01-11T19:47:06.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3675, N'DHO8HS7X1611KFPG8   ', N'Hietamies                                                                                           ', N'Daisy                                                                                               ', 19, 8, 0, CAST(N'2017-01-11T19:47:06.017' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3676, N'TLIMY0Y1QPVKM519P   ', N'Longhole                                                                                            ', N'Twinkleleaf                                                                                         ', 36, 8, 0, CAST(N'2017-01-11T19:47:06.037' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3677, N'SG80CTF03QTD741W4   ', N'Griffin                                                                                             ', N'Sofia                                                                                               ', 13, 6, 0, CAST(N'2017-01-11T19:47:06.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3678, N'HS2FS174SAOV8TCPM   ', N'Schmid                                                                                              ', N'Hannah                                                                                              ', 42, 7, 0, CAST(N'2017-01-11T19:47:06.077' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3679, N'DTF40FF3YBNS1BC1T   ', N'Topanga                                                                                             ', N'David                                                                                               ', 5, 2, 0, CAST(N'2017-01-11T19:47:06.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3680, N'MK9IHM77OTIB31NTB   ', N'Kristiina                                                                                           ', N'Mira                                                                                                ', 39, 2, 0, CAST(N'2017-01-11T19:47:06.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3681, N'KSYVUGM61VH4N1NHP   ', N'Simpkin                                                                                             ', N'Kim                                                                                                 ', 33, 2, 0, CAST(N'2017-01-11T19:47:06.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3682, N'JBTBCOEAQECNPPXA8   ', N'Breakdown                                                                                           ', N'Jemmy                                                                                               ', 16, 3, 0, CAST(N'2017-01-11T19:47:06.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3683, N'JD60I3M9WFBJH8XMF   ', N'Dulcinea                                                                                            ', N'Jellygleam                                                                                          ', 2, 4, 0, CAST(N'2017-01-11T19:47:06.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3684, N'SSD37PMCS05YCF9Q4   ', N'Seton                                                                                               ', N'Sally                                                                                               ', 71, 3, 0, CAST(N'2017-01-11T19:47:06.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3685, N'AOPSD4UCY15V4W92B   ', N'Ogden                                                                                               ', N'Alodia                                                                                              ', 17, 8, 0, CAST(N'2017-01-11T19:47:06.223' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3686, N'TJK7UBMGPJ0F6MKVT   ', N'Jacobson                                                                                            ', N'Terje                                                                                               ', 40, 8, 0, CAST(N'2017-01-11T19:47:06.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3687, N'JLAK853E1LX8QLKI8   ', N'Lightfoot                                                                                           ', N'Jellygleam                                                                                          ', 11, 3, 0, CAST(N'2017-01-11T19:47:06.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3688, N'DL4YPCUIR4SQSBVBP   ', N'Longhole                                                                                            ', N'Daisy                                                                                               ', 20, 1, 0, CAST(N'2017-01-11T19:47:06.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3689, N'KAHOVR2HX5RNLSVNW   ', N'Albert                                                                                              ', N'Katariina                                                                                           ', 28, 8, 0, CAST(N'2017-01-11T19:47:06.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3690, N'PPK9LTIN2BEBT7IJP   ', N'Potatochaser                                                                                        ', N'Peggy-Rae                                                                                           ', 14, 8, 0, CAST(N'2017-01-11T19:47:06.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3691, N'AGRC9GIQXU9QOETOE   ', N'Gently                                                                                              ', N'Amanda                                                                                              ', 8, 1, 0, CAST(N'2017-01-11T19:47:06.423' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3692, N'NM7X9WTAHJUMB46OW   ', N'McSpuddy                                                                                            ', N'Nydia                                                                                               ', 29, 6, 0, CAST(N'2017-01-11T19:47:13.073' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3693, N'GHE1WJTDD3O25BHTM   ', N'Hornblower                                                                                          ', N'Grimalda                                                                                            ', 9, 3, 0, CAST(N'2017-01-11T19:47:13.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3694, N'DB8FEQLH3MJK71SM4   ', N'Badcock                                                                                             ', N'Dietfried                                                                                           ', 15, 1, 0, CAST(N'2017-01-11T19:47:13.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3695, N'ESL5K5SH9NIHYISXB   ', N'Scavenger                                                                                           ', N'Eugene                                                                                              ', 3, 4, 0, CAST(N'2017-01-11T19:47:13.133' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3696, N'PMS89RSK57CWTP431   ', N'Mirjam                                                                                              ', N'Pollyanna                                                                                           ', 52, 4, 0, CAST(N'2017-01-11T19:47:13.157' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3697, N'CG5WF71JB8CSL84E8   ', N'Goldworthy                                                                                          ', N'Crippler                                                                                            ', 12, 6, 0, CAST(N'2017-01-11T19:47:13.177' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3698, N'SCC14S1M7R68GFFJW   ', N'Cyra                                                                                                ', N'Spud                                                                                                ', 35, 8, 0, CAST(N'2017-01-11T19:47:13.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3699, N'SGPPA89MDS558WFU4   ', N'Gently                                                                                              ', N'Sally                                                                                               ', 6, 6, 0, CAST(N'2017-01-11T19:47:13.227' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3700, N'WFJ4RF1P3C0OAMQNM   ', N'Force                                                                                               ', N'Wingspan                                                                                            ', 21, 7, 0, CAST(N'2017-01-11T19:47:13.247' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3701, N'DP9I59HOFEYHULQB1   ', N'Philomel                                                                                            ', N'Dirk                                                                                                ', 58, 8, 0, CAST(N'2017-01-11T19:47:13.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3702, N'RG3WMG9S5WT0WB24I   ', N'Grubb                                                                                               ', N'Rhoda                                                                                               ', 64, 5, 0, CAST(N'2017-01-11T19:47:13.287' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3703, N'ACGLSUGRBXSWPS1FP   ', N'Clarkson                                                                                            ', N'Alodia                                                                                              ', 38, 1, 0, CAST(N'2017-01-11T19:47:13.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3704, N'DP7HCIOXA2GN6PN1B   ', N'Proudfoot                                                                                           ', N'Defensor                                                                                            ', 7, 7, 0, CAST(N'2017-01-11T19:47:13.387' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3705, N'DGEL05O16MA30WY51   ', N'Gentlemoon                                                                                          ', N'Dirk                                                                                                ', 70, 7, 0, CAST(N'2017-01-11T19:47:13.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3706, N'AJRA6JW1CN90SEYG8   ', N'Jacobson                                                                                            ', N'Alfred                                                                                              ', 18, 1, 0, CAST(N'2017-01-11T19:47:13.423' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3707, N'VL4YDY50IO9VKVYSE   ', N'Leavitt                                                                                             ', N'Victor                                                                                              ', 30, 8, 0, CAST(N'2017-01-11T19:47:13.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3708, N'COXDU6W4873FMLALW   ', N'Ogden                                                                                               ', N'Carbry                                                                                              ', 10, 4, 0, CAST(N'2017-01-11T19:47:13.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3709, N'RS5HIRV74QXUGSLPL   ', N'Siiri                                                                                               ', N'Ross                                                                                                ', 41, 3, 0, CAST(N'2017-01-11T19:47:13.487' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3710, N'BSI6P746ARWR9AL2S   ', N'Slayer                                                                                              ', N'Barleyfarmer                                                                                        ', 4, 4, 0, CAST(N'2017-01-11T19:47:13.507' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3711, N'KTUUVLC6GSVN2RLD0   ', N'Topanga                                                                                             ', N'Kateri                                                                                              ', 19, 8, 0, CAST(N'2017-01-11T19:47:13.523' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3712, N'HF2YJ8C9CDP3V0WHP   ', N'Fantine                                                                                             ', N'Haidee                                                                                              ', 36, 7, 0, CAST(N'2017-01-11T19:47:13.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3713, N'DFFNQNK8IEP0NHWTW   ', N'Fairbairn                                                                                           ', N'Dirk                                                                                                ', 13, 8, 0, CAST(N'2017-01-11T19:47:13.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3714, N'PC928UCC8WKIP78ME   ', N'Cyra                                                                                                ', N'Piloqutinnguaq                                                                                      ', 42, 6, 0, CAST(N'2017-01-11T19:47:13.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3715, N'PTMQE9KCEXJFIO8XL   ', N'T hirih                                                                                             ', N'Powerglide                                                                                          ', 5, 4, 0, CAST(N'2017-01-11T19:47:13.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3716, N'DSSU3VJFAHDUCVI3B   ', N'Saunders                                                                                            ', N'Donnamira                                                                                           ', 39, 4, 0, CAST(N'2017-01-11T19:47:13.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3717, N'SS6J9AREGIDQ5DIEI   ', N'Spacespirit                                                                                         ', N'Spud                                                                                                ', 33, 1, 0, CAST(N'2017-01-11T19:47:13.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3718, N'MS0XQHJI627A73T70   ', N'Sulin                                                                                               ', N'Marika                                                                                              ', 16, 1, 0, CAST(N'2017-01-11T19:47:13.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3719, N'HFDMWWRHC276YKTJ7   ', N'Fairbairn                                                                                           ', N'Herbie                                                                                              ', 2, 1, 0, CAST(N'2017-01-11T19:47:13.683' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3720, N'QDBM460Q6QODAOR8I   ', N'Dazzlegaze                                                                                          ', N'Queen                                                                                               ', 71, 2, 0, CAST(N'2017-01-11T19:47:13.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3721, N'LCNBBL7QCRNA26RKP   ', N'Clarkson                                                                                            ', N'Lalla                                                                                               ', 17, 4, 0, CAST(N'2017-01-11T19:47:13.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3722, N'JSUEY77T9CHPWD3OE   ', N'Siiri                                                                                               ', N'Jochim                                                                                              ', 40, 6, 0, CAST(N'2017-01-11T19:47:13.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3723, N'DF845MFSEDHLOU31L   ', N'Fairbairn                                                                                           ', N'Daisy                                                                                               ', 11, 7, 0, CAST(N'2017-01-11T19:47:13.853' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3724, N'FMF7T8FVBWB1J2E5B   ', N'McSpuddy                                                                                            ', N'Fergus                                                                                              ', 20, 8, 0, CAST(N'2017-01-11T19:47:13.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3725, N'GJRV0NNVGXAXBJEGI   ', N'J rvinen                                                                                            ', N'Gobnata                                                                                             ', 28, 7, 0, CAST(N'2017-01-11T19:47:13.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3726, N'EPLAHUF07G5HD9P90   ', N'Prowl                                                                                               ', N'Everild                                                                                             ', 14, 3, 0, CAST(N'2017-01-11T19:47:13.907' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3727, N'LAY0O9NYDH4D5QOL7   ', N'Allen                                                                                               ', N'Lalia                                                                                               ', 8, 7, 0, CAST(N'2017-01-11T19:47:13.927' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3728, N'BTJH67MOVYLWSCH5U   ', N'T hirih                                                                                             ', N'Bertram                                                                                             ', 29, 8, 0, CAST(N'2017-01-11T19:47:22.227' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3729, N'CBPKUTMSRIFCNJSAK   ', N'Bunce                                                                                               ', N'Ceallagh                                                                                            ', 9, 3, 0, CAST(N'2017-01-11T19:47:22.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3730, N'AA3A18URXJF8F1SLR   ', N'Andersen                                                                                            ', N'Alodia                                                                                              ', 15, 2, 0, CAST(N'2017-01-11T19:47:22.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3731, N'CWWOIFMVN39RHQ4E9   ', N'Wheeljack                                                                                           ', N'Carbry                                                                                              ', 3, 2, 0, CAST(N'2017-01-11T19:47:22.300' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3732, N'KST6JV2XVO20WXE6D   ', N'Starbeam                                                                                            ', N'Kim                                                                                                 ', 52, 6, 0, CAST(N'2017-01-11T19:47:22.367' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3733, N'WS198I21R8VFQ5PB2   ', N'Saraste                                                                                             ', N'Wingspan                                                                                            ', 12, 5, 0, CAST(N'2017-01-11T19:47:22.387' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3734, N'MSEXEWA0X9VBIMPM9   ', N'Sherman                                                                                             ', N'Morgen                                                                                              ', 35, 6, 0, CAST(N'2017-01-11T19:47:22.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3735, N'UD8CV424ORQUKC1FR   ', N'Donohoe                                                                                             ', N'Ultra                                                                                               ', 6, 5, 0, CAST(N'2017-01-11T19:47:22.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3736, N'AMXQ9XI30TON5B136   ', N'Mirjam                                                                                              ', N'Ailpein                                                                                             ', 21, 5, 0, CAST(N'2017-01-11T19:47:22.447' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3737, N'RLR5Q5A7QDJ771CVN   ', N'Leavitt                                                                                             ', N'Riina                                                                                               ', 58, 2, 0, CAST(N'2017-01-11T19:47:22.463' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3738, N'QB5TWKH6WEJ30IC8U   ', N'Breakdown                                                                                           ', N'Queen                                                                                               ', 64, 8, 0, CAST(N'2017-01-11T19:47:22.483' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3739, N'SACXL6H9SXDITPNCK   ', N'Animal                                                                                              ', N'Sean                                                                                                ', 38, 5, 0, CAST(N'2017-01-11T19:47:22.517' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3740, N'PMOMRLP9YYCFM8NNR   ', N'McCringleberry                                                                                      ', N'Phoenix                                                                                             ', 7, 4, 0, CAST(N'2017-01-11T19:47:22.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3741, N'COVPG8PCUI6UGFYSG   ', N'Optimus                                                                                             ', N'Crippler                                                                                            ', 70, 1, 0, CAST(N'2017-01-11T19:47:22.557' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3742, N'AA9FMMXB1J6Q9WY4N   ', N'Albert                                                                                              ', N'Anni                                                                                                ', 18, 7, 0, CAST(N'2017-01-11T19:47:22.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3743, N'GS3T4TPFQ30AAMAW5   ', N'Sackville                                                                                           ', N'Gumphauler                                                                                          ', 30, 6, 0, CAST(N'2017-01-11T19:47:22.600' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3744, N'ABAWRGPIMMUP5TL2U   ', N'Baphomet                                                                                            ', N'Ailpein                                                                                             ', 10, 5, 0, CAST(N'2017-01-11T19:47:22.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3745, N'HAMLYUWISNTLWBLD2   ', N'Aylen                                                                                               ', N'Henna                                                                                               ', 41, 1, 0, CAST(N'2017-01-11T19:47:22.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3746, N'TK0B5A5HYOSIPSKP9   ', N'Kaisa                                                                                               ', N'Titania                                                                                             ', 4, 7, 0, CAST(N'2017-01-11T19:47:22.653' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3747, N'GSTPMHWLO7N2RIVIQ   ', N'Smallburrow                                                                                         ', N'Grimalda                                                                                            ', 19, 7, 0, CAST(N'2017-01-11T19:47:22.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3748, N'ST7ETV5KU8NXJ0VTX   ', N'Thompson                                                                                            ', N'Silverfrost                                                                                         ', 36, 4, 0, CAST(N'2017-01-11T19:47:22.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3749, N'HDJ30BDK19MUCHV55   ', N'Donohoe                                                                                             ', N'Hingle                                                                                              ', 13, 7, 0, CAST(N'2017-01-11T19:47:22.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3750, N'MSQ7OWDNWSGA6O7AU   ', N'School                                                                                              ', N'Mooncheeks                                                                                          ', 42, 7, 0, CAST(N'2017-01-11T19:47:22.733' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3751, N'SJXACJDQSDAP0WIEJ   ', N'Jakeman                                                                                             ', N'Sleek                                                                                               ', 5, 8, 0, CAST(N'2017-01-11T19:47:22.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3752, N'KHAYIYLPYEALSEIQQ   ', N'Hietamies                                                                                           ', N'Kerr                                                                                                ', 39, 2, 0, CAST(N'2017-01-11T19:47:22.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3753, N'RIH37KKSUX41MLTUG   ', N'Itzel                                                                                               ', N'Rowan                                                                                               ', 33, 8, 0, CAST(N'2017-01-11T19:47:22.813' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3754, N'AMO6U7KWQHXGHS505   ', N'Maoilios                                                                                            ', N'Ayelen                                                                                              ', 16, 1, 0, CAST(N'2017-01-11T19:47:22.847' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3755, N'SSVAJSK0N2RWB0G4U   ', N'Schuler                                                                                             ', N'Sweetstar                                                                                           ', 2, 5, 0, CAST(N'2017-01-11T19:47:22.877' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3756, N'GHLNVM1YY3QPVYGR9   ', N'Hogpen                                                                                              ', N'Gumphauler                                                                                          ', 71, 5, 0, CAST(N'2017-01-11T19:47:22.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3757, N'KHF2DTS2PML8XORKQ   ', N'Hawking                                                                                             ', N'Kateri                                                                                              ', 17, 4, 0, CAST(N'2017-01-11T19:47:22.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3758, N'RS5GQO911OJ1IOR85   ', N'Sureshot                                                                                            ', N'Rosa                                                                                                ', 40, 4, 0, CAST(N'2017-01-11T19:47:22.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3759, N'MCCJFA84X8EGDV2CU   ', N'Carbrey                                                                                             ', N'Matilda                                                                                             ', 11, 4, 0, CAST(N'2017-01-11T19:47:22.977' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3760, N'PS7XWH08NQ90ELD5C   ', N'Sludge                                                                                              ', N'Piloqutinnguaq                                                                                      ', 20, 4, 0, CAST(N'2017-01-11T19:47:22.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3761, N'ZRJN3W87TR8V73DHJ   ', N'Rock                                                                                                ', N'Zyanya                                                                                              ', 28, 1, 0, CAST(N'2017-01-11T19:47:23.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3762, N'MHWCABG70S7SYKDSQ   ', N'Hanley                                                                                              ', N'Maitland                                                                                            ', 14, 1, 0, CAST(N'2017-01-11T19:47:23.033' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3763, N'OSQQQI8BPC2B1AOL9   ', N'Seedfarmer                                                                                          ', N'Odell                                                                                               ', 8, 7, 0, CAST(N'2017-01-11T19:47:23.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3764, N'GIW2CX5I9COYQ6RVO   ', N'Ibbott                                                                                              ', N'Grayson                                                                                             ', 29, 3, 0, CAST(N'2017-01-11T19:47:28.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3765, N'MCQGT5WM0UJISV3O6   ', N'Chubb-Baggins                                                                                       ', N'Marika                                                                                              ', 9, 7, 0, CAST(N'2017-01-11T19:47:28.997' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3766, N'DLGU7YDKCWIBDU3BK   ', N'Levy                                                                                                ', N'Dirk                                                                                                ', 15, 8, 0, CAST(N'2017-01-11T19:47:29.017' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3767, N'JKA9O65O2FDTFKE53   ', N'Kaisa                                                                                               ', N'Jessamine                                                                                           ', 3, 5, 0, CAST(N'2017-01-11T19:47:29.033' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3768, N'TWNXULDO8GCQ72EGA   ', N'Wheeljack                                                                                           ', N'Titania                                                                                             ', 52, 6, 0, CAST(N'2017-01-11T19:47:29.057' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3769, N'WF0M20LNEHBM0JERH   ', N'Fairbairn                                                                                           ', N'Webster                                                                                             ', 12, 2, 0, CAST(N'2017-01-11T19:47:29.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3770, N'JW7QPMLQA252TQPW6   ', N'Whitfoot                                                                                            ', N'Jeremiah                                                                                            ', 35, 8, 0, CAST(N'2017-01-11T19:47:29.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3771, N'RKETE9KT6L0HNX11V   ', N'Klowee                                                                                              ', N'Rowan                                                                                               ', 6, 5, 0, CAST(N'2017-01-11T19:47:29.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3772, N'CSRIKNSTCMYEGG1D3   ', N'Starbeam                                                                                            ', N'Cyra                                                                                                ', 21, 5, 0, CAST(N'2017-01-11T19:47:29.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3773, N'CSLX2UKX25TWI6C6K   ', N'Snowfeather                                                                                         ', N'C emgein                                                                                            ', 58, 5, 0, CAST(N'2017-01-11T19:47:29.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3774, N'SKBBFO1VE7RP35BSY   ', N'Kateri                                                                                              ', N'Sweetwing                                                                                           ', 64, 2, 0, CAST(N'2017-01-11T19:47:29.193' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3775, N'HK5PWVS04QM95UMMG   ', N'Kaja                                                                                                ', N'Hingle                                                                                              ', 38, 5, 0, CAST(N'2017-01-11T19:47:29.213' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3776, N'KRIF3B1YARM6WCMXN   ', N'Rippersnapper                                                                                       ', N'Kadri                                                                                               ', 7, 7, 0, CAST(N'2017-01-11T19:47:29.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3777, N'PRPIRW136BGLRJX2D   ', N'Ranald                                                                                              ', N'Pigplanter                                                                                          ', 70, 4, 0, CAST(N'2017-01-11T19:47:29.257' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3778, N'AL27XC92CCFHJ1XEK   ', N'Longhole                                                                                            ', N'Annukka                                                                                             ', 18, 7, 0, CAST(N'2017-01-11T19:47:29.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3779, N'RS9BMX858V9WE89I9   ', N'Starbeam                                                                                            ', N'Rollie                                                                                              ', 30, 2, 0, CAST(N'2017-01-11T19:47:29.300' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3780, N'JENHX78C00XR2NVRN   ', N'Error                                                                                               ', N'Jeremiah                                                                                            ', 10, 3, 0, CAST(N'2017-01-11T19:47:29.367' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3781, N'AT075LGB61WOU5V3U   ', N'Thompson                                                                                            ', N'Arlen                                                                                               ', 41, 8, 0, CAST(N'2017-01-11T19:47:29.387' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3782, N'DD7AS8GE2KQ4OC78K   ', N'Dulcinea                                                                                            ', N'Dirk                                                                                                ', 4, 3, 0, CAST(N'2017-01-11T19:47:29.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3783, N'REWO62WDEMPW9B7VY   ', N'Error                                                                                               ', N'Robert                                                                                              ', 19, 6, 0, CAST(N'2017-01-11T19:47:29.433' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3784, N'OCR3N9OH55KGB1IOG   ', N'Cyra                                                                                                ', N'Octane                                                                                              ', 36, 7, 0, CAST(N'2017-01-11T19:47:29.453' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3785, N'DG4RTNVGA6JC4II0N   ', N'Gears                                                                                               ', N'Donnamira                                                                                           ', 13, 4, 0, CAST(N'2017-01-11T19:47:29.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3786, N'FMX6BUNK1PEV68SS6   ', N'Moongaze                                                                                            ', N'Forest                                                                                              ', 42, 7, 0, CAST(N'2017-01-11T19:47:29.493' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3787, N'ZZNKOO4JDRDOQ8SGK   ', N'Zaragamba                                                                                           ', N'Zyanya                                                                                              ', 5, 3, 0, CAST(N'2017-01-11T19:47:29.517' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3788, N'CGIY6WVM3A87RW492   ', N'Graves                                                                                              ', N'Chickenfarmer                                                                                       ', 39, 7, 0, CAST(N'2017-01-11T19:47:29.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3789, N'DRUNDB4M9B74KF4K9   ', N'Rippersnapper                                                                                       ', N'Devastator                                                                                          ', 33, 5, 0, CAST(N'2017-01-11T19:47:29.560' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3790, N'LB2Q1X4P5U1JEMFPY   ', N'Bunce                                                                                               ', N'Lalla                                                                                               ', 16, 5, 0, CAST(N'2017-01-11T19:47:29.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3791, N'JMFG8CCOBV0F74F16   ', N'Manninen                                                                                            ', N'Joyce                                                                                               ', 2, 3, 0, CAST(N'2017-01-11T19:47:29.597' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3792, N'RS9UOJ4S1FUY9TQTN   ', N'Sideswipe                                                                                           ', N'Runabout                                                                                            ', 71, 3, 0, CAST(N'2017-01-11T19:47:29.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3793, N'HMY82DJRDGTRTSQH2   ', N'Moongaze                                                                                            ', N'Hingle                                                                                              ', 17, 2, 0, CAST(N'2017-01-11T19:47:29.640' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3794, N'HC6CQ0JU91N7N02MR   ', N'Carbrey                                                                                             ', N'Hingle                                                                                              ', 40, 3, 0, CAST(N'2017-01-11T19:47:29.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3795, N'CUI1WERTF2M4GH2XX   ', N'Ulalume                                                                                             ', N'Corona                                                                                              ', 11, 3, 0, CAST(N'2017-01-11T19:47:29.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3796, N'MGKI38J114C2CEOU5   ', N'Glittersheen                                                                                        ', N'Maitland                                                                                            ', 20, 5, 0, CAST(N'2017-01-11T19:47:29.730' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3797, N'KGW89NR175BY4WO7C   ', N'Graves                                                                                              ', N'Kateri                                                                                              ', 28, 3, 0, CAST(N'2017-01-11T19:47:29.750' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3798, N'ACAWF200D6AUWEOIJ   ', N'Clarkson                                                                                            ', N'Aili                                                                                                ', 14, 3, 0, CAST(N'2017-01-11T19:47:29.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3799, N'HPH04OY39Q4AQLYN9   ', N'Peacespirit                                                                                         ', N'Harmony                                                                                             ', 8, 6, 0, CAST(N'2017-01-11T19:47:29.793' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3800, N'DBUKUOK9TGEEXPCEV   ', N'Beckham                                                                                             ', N'Devastator                                                                                          ', 29, 3, 0, CAST(N'2017-01-11T19:47:38.857' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3801, N'NSOYCVCDJ09W0FN7E   ', N'Sugarkiss                                                                                           ', N'Nina                                                                                                ', 9, 6, 0, CAST(N'2017-01-11T19:47:38.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3802, N'SQ2NIBKCP18TSWNIL   ', N'Quickmoon                                                                                           ', N'Savanna                                                                                             ', 15, 1, 0, CAST(N'2017-01-11T19:47:38.903' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3803, N'SM9R7WKFLK29M4YNA   ', N'Meissner                                                                                            ', N'Sacnite                                                                                             ', 3, 7, 0, CAST(N'2017-01-11T19:47:38.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3804, N'GNLGDCSFRL15FMYYH   ', N'Nye                                                                                                 ', N'Gumphauler                                                                                          ', 52, 4, 0, CAST(N'2017-01-11T19:47:38.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3805, N'FQY5KR1EXM1274YBO   ', N'Quackenbush                                                                                         ', N'Forest                                                                                              ', 12, 5, 0, CAST(N'2017-01-11T19:47:38.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3806, N'HDSJ2YSIN5VK9TA47   ', N'Dulcinea                                                                                            ', N'Harmony                                                                                             ', 35, 5, 0, CAST(N'2017-01-11T19:47:38.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3807, N'HUCCV00KPQOWVILJ3   ', N'Ulalume                                                                                             ', N'Hingle                                                                                              ', 6, 2, 0, CAST(N'2017-01-11T19:47:39.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3808, N'APP13E8KVRNSO0LVA   ', N'Proudfoot                                                                                           ', N'Assassin                                                                                            ', 21, 3, 0, CAST(N'2017-01-11T19:47:39.033' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3809, N'APJFKL0NMAICPPWOS   ', N'Peacespirit                                                                                         ', N'Arnie                                                                                               ', 58, 1, 0, CAST(N'2017-01-11T19:47:39.053' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3810, N'DBW5Q18NRBI9I7W00   ', N'Brown                                                                                               ', N'David                                                                                               ', 64, 2, 0, CAST(N'2017-01-11T19:47:39.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3811, N'AG48FM8QOUCOCE85O   ', N'Graves                                                                                              ', N'Aili                                                                                                ', 38, 7, 0, CAST(N'2017-01-11T19:47:39.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3812, N'TMAB398TKF647LJ9E   ', N'Moongaze                                                                                            ', N'Tommie                                                                                              ', 7, 6, 0, CAST(N'2017-01-11T19:47:39.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3813, N'AP0PG3NSWH5WRLIWS   ', N'Potatochaser                                                                                        ', N'Alasdair                                                                                            ', 70, 7, 0, CAST(N'2017-01-11T19:47:39.157' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3814, N'RHU4XAFWM00FTBTPA   ', N'Hawking                                                                                             ', N'Rhino                                                                                               ', 18, 7, 0, CAST(N'2017-01-11T19:47:39.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3815, N'RMEWSBNYOKSRF0567   ', N'McCringleberry                                                                                      ', N'Rowan                                                                                               ', 30, 2, 0, CAST(N'2017-01-11T19:47:39.213' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3816, N'LARLYQVYULRN8H5HE   ', N'Albert                                                                                              ', N'Lightspeed                                                                                          ', 10, 7, 0, CAST(N'2017-01-11T19:47:39.233' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3817, N'ETL0GXN2K4M7A7GAV   ', N'Twinkleeyes                                                                                         ', N'Eugene                                                                                              ', 41, 5, 0, CAST(N'2017-01-11T19:47:39.253' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3818, N'PMYONCV2Q5M42OGM3   ', N'McBelle                                                                                             ', N'Phoenix                                                                                             ', 4, 6, 0, CAST(N'2017-01-11T19:47:39.270' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3819, N'MCBETR41W6L0U6GXA   ', N'Carbrey                                                                                             ', N'Mira                                                                                                ', 19, 4, 0, CAST(N'2017-01-11T19:47:39.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3820, N'RNIHHD34SQFFODR30   ', N'Nita                                                                                                ', N'Ross                                                                                                ', 36, 8, 0, CAST(N'2017-01-11T19:47:39.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3821, N'RFWOTM3BKT4ADSEBD   ', N'Fairbairn                                                                                           ', N'Rollo                                                                                               ', 13, 7, 0, CAST(N'2017-01-11T19:47:39.387' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3822, N'KHGGONBDMFWM0HPRA   ', N'Hawking                                                                                             ', N'Kim                                                                                                 ', 42, 8, 0, CAST(N'2017-01-11T19:47:39.420' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3823, N'MLT6U2JDSGVIRYP4H   ', N'Leelo                                                                                               ', N'Mira                                                                                                ', 5, 7, 0, CAST(N'2017-01-11T19:47:39.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3824, N'DH6U2HRCYHVFKGPFO   ', N'Heyward                                                                                             ', N'Dolly-Sue                                                                                           ', 39, 7, 0, CAST(N'2017-01-11T19:47:39.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3825, N'UADXP3QFU1PUEN0JD   ', N'Amsel                                                                                               ', N'Ultra                                                                                               ', 33, 3, 0, CAST(N'2017-01-11T19:47:39.483' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3826, N'NM7C7AIJLJKEGDBDV   ', N'McKenzie                                                                                            ', N'Nina                                                                                                ', 16, 2, 0, CAST(N'2017-01-11T19:47:39.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3827, N'GSK2EPQIQKJA9UBO3   ', N'Seedfarmer                                                                                          ', N'Gordon                                                                                              ', 2, 4, 0, CAST(N'2017-01-11T19:47:39.523' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3828, N'MSR52CQMN4DP32MSR   ', N'Scourge                                                                                             ', N'Mari                                                                                                ', 71, 8, 0, CAST(N'2017-01-11T19:47:39.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3829, N'BG4T8QYLS5DMVKM5Y   ', N'Goold                                                                                               ', N'Belle                                                                                               ', 17, 2, 0, CAST(N'2017-01-11T19:47:39.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3830, N'PWHJF67KY6CIN2MG6   ', N'Warrick                                                                                             ', N'Potatosower                                                                                         ', 40, 6, 0, CAST(N'2017-01-11T19:47:39.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3831, N'RSOM3R7OVQ6XI9XLV   ', N'Siiri                                                                                               ', N'Ruairidh                                                                                            ', 11, 7, 0, CAST(N'2017-01-11T19:47:39.610' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3832, N'GLUQRE6RRA0DCG9PK   ', N'Longhole                                                                                            ', N'Gerda                                                                                               ', 20, 4, 0, CAST(N'2017-01-11T19:47:39.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3833, N'TM8FXSEQXB0A5X91R   ', N'McSpuddy                                                                                            ', N'Trey                                                                                                ', 28, 2, 0, CAST(N'2017-01-11T19:47:39.657' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3834, N'CT2TF06UNTUS6NKUA   ', N'Twinkleeyes                                                                                         ', N'Crush                                                                                               ', 14, 4, 0, CAST(N'2017-01-11T19:47:39.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3835, N'CSFIMFETTUTPY5K6H   ', N'Sparklemoon                                                                                         ', N'Crippler                                                                                            ', 8, 7, 0, CAST(N'2017-01-11T19:47:39.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3836, N'CM8HCVHVGASJV0D63   ', N'Marika                                                                                              ', N'Chickenfarmer                                                                                       ', 29, 5, 0, CAST(N'2017-01-11T19:47:49.737' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3837, N'TF2VT3906TN3XPOYL   ', N'Fraser                                                                                              ', N'Tiia                                                                                                ', 9, 4, 0, CAST(N'2017-01-11T19:47:49.757' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3838, N'SBFL1IHYCTN0Q7OBS   ', N'Baphomet                                                                                            ', N'Silverfrost                                                                                         ', 15, 4, 0, CAST(N'2017-01-11T19:47:49.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3839, N'LSMOO4H28EHFKE0FH   ', N'Sludge                                                                                              ', N'Lalia                                                                                               ', 3, 1, 0, CAST(N'2017-01-11T19:47:49.800' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3840, N'OEYDUJO2EFGBDV0QO   ', N'Error                                                                                               ', N'Outi                                                                                                ', 52, 3, 0, CAST(N'2017-01-11T19:47:49.823' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3841, N'MD6HJ5O5AYAQ73BVE   ', N'Dazzlegaze                                                                                          ', N'Marika                                                                                              ', 12, 2, 0, CAST(N'2017-01-11T19:47:49.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3842, N'CDJ6PKW4G0AN0KB7L   ', N'Doommate                                                                                            ', N'Ceallagh                                                                                            ', 35, 5, 0, CAST(N'2017-01-11T19:47:49.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3843, N'ZBP9E6W8CJ43TRMCA   ', N'Beckham                                                                                             ', N'Zyanya                                                                                              ', 6, 4, 0, CAST(N'2017-01-11T19:47:49.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3844, N'MD3YKL57IK3YMAMNH   ', N'Donnchadh                                                                                           ', N'Methoataske                                                                                         ', 21, 7, 0, CAST(N'2017-01-11T19:47:49.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3845, N'AMWD2SWB84XINYXG0   ', N'Manninen                                                                                            ', N'Angelica                                                                                            ', 58, 2, 0, CAST(N'2017-01-11T19:47:49.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3846, N'SAA2985AE5WEGHXR7   ', N'Animal                                                                                              ', N'Silverfrost                                                                                         ', 64, 6, 0, CAST(N'2017-01-11T19:47:49.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3847, N'ALH5WT5DAORUAO9WV   ', N'Larivaara                                                                                           ', N'Arlen                                                                                               ', 38, 7, 0, CAST(N'2017-01-11T19:47:49.973' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3848, N'TMTU39CDGPQQ36983   ', N'Marika                                                                                              ', N'Tommie                                                                                              ', 7, 2, 0, CAST(N'2017-01-11T19:47:49.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3849, N'AA1XRUCGC9K6WDKDR   ', N'Age                                                                                                 ', N'Amanda                                                                                              ', 70, 1, 0, CAST(N'2017-01-11T19:47:50.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3850, N'SA81FHCJ8TELRKUHH   ', N'Alberts                                                                                             ', N'Sweetwing                                                                                           ', 18, 2, 0, CAST(N'2017-01-11T19:47:50.043' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3851, N'GSKQMVKIETEIJ2UTO   ', N'Simpkin                                                                                             ', N'Grimalda                                                                                            ', 30, 2, 0, CAST(N'2017-01-11T19:47:50.067' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3852, N'DSXFSBSIKUDECJU5V   ', N'Seedfarmer                                                                                          ', N'Defensor                                                                                            ', 10, 5, 0, CAST(N'2017-01-11T19:47:50.087' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3853, N'SJ5IGWSLGF7T6R69K   ', N'Jacobson                                                                                            ', N'Sweetstar                                                                                           ', 41, 1, 0, CAST(N'2017-01-11T19:47:50.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3854, N'HLCM5JSODY190YHEA   ', N'Leavitt                                                                                             ', N'Herbie                                                                                              ', 4, 2, 0, CAST(N'2017-01-11T19:47:50.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3855, N'DRJPS6RR9IVPU6SIY   ', N'Rowander                                                                                            ', N'Dirk                                                                                                ', 19, 3, 0, CAST(N'2017-01-11T19:47:50.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3856, N'CQ94608QKKTIF5S6D   ', N'Quickberry                                                                                          ', N'Chickenfarmer                                                                                       ', 36, 3, 0, CAST(N'2017-01-11T19:47:50.203' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3857, N'SO3IN70UB4O1HU4YV   ', N'Ogden                                                                                               ', N'Savanna                                                                                             ', 13, 7, 0, CAST(N'2017-01-11T19:47:50.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3858, N'TSALBS0X7NIGB2F4K   ', N'Seton                                                                                               ', N'Twinkleberry                                                                                        ', 42, 3, 0, CAST(N'2017-01-11T19:47:50.253' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3859, N'MJMBI88XDOID4JFFR   ', N'Julitta                                                                                             ', N'Maimu                                                                                               ', 5, 2, 0, CAST(N'2017-01-11T19:47:50.277' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3860, N'PRTE6T8198CSXQQJH   ', N'Rippersnapper                                                                                       ', N'Pigplanter                                                                                          ', 39, 8, 0, CAST(N'2017-01-11T19:47:50.293' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3861, N'EG73D9F0F9BOQ8QVO   ', N'Gentlemoon                                                                                          ', N'Everild                                                                                             ', 33, 5, 0, CAST(N'2017-01-11T19:47:50.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3862, N'MDKAPHF67D0JENC53   ', N'Donohoe                                                                                             ', N'Mirjam                                                                                              ', 16, 3, 0, CAST(N'2017-01-11T19:47:50.377' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3863, N'ABAO2BV5JFXCYMCRH   ', N'Brown                                                                                               ', N'Applebreeze                                                                                         ', 2, 8, 0, CAST(N'2017-01-11T19:47:50.400' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3864, N'TT53JIN99XSV1CNLY   ', N'Thompson                                                                                            ', N'Tiia                                                                                                ', 71, 6, 0, CAST(N'2017-01-11T19:47:50.423' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3865, N'TTHRQXV8FYRSTTNW6   ', N'Tyrrell                                                                                             ', N'Trey                                                                                                ', 17, 5, 0, CAST(N'2017-01-11T19:47:50.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3866, N'AKUGWC48L0ROLBN8D   ', N'Kaisa                                                                                               ', N'Arabella                                                                                            ', 40, 8, 0, CAST(N'2017-01-11T19:47:50.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3867, N'RO2KLY3BHJL4GIYD3   ', N'Optimus                                                                                             ', N'Rein                                                                                                ', 11, 4, 0, CAST(N'2017-01-11T19:47:50.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3868, N'DSLCF0BEJ5EG38ATY   ', N'Smith                                                                                               ', N'Dan                                                                                                 ', 20, 8, 0, CAST(N'2017-01-11T19:47:50.527' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3869, N'TGFQW73H9N9Y4XLMG   ', N'Gamgee                                                                                              ', N'Tasgall                                                                                             ', 28, 1, 0, CAST(N'2017-01-11T19:47:50.553' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3870, N'RM55A1JGLP8RPWL9U   ', N'McCringleberry                                                                                      ', N'Rosa                                                                                                ', 14, 4, 0, CAST(N'2017-01-11T19:47:50.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3871, N'GA0JR8BKB83BQMW3D   ', N'Anthonyson                                                                                          ', N'Gerda                                                                                               ', 8, 5, 0, CAST(N'2017-01-11T19:47:50.593' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3872, N'MLSM4N55WO50SFIP7   ', N'Longhole                                                                                            ', N'Methoataske                                                                                         ', 29, 7, 0, CAST(N'2017-01-11T19:47:56.210' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3873, N'KA0PR958T8YFNMTTW   ', N'Amsel                                                                                               ', N'Kadri                                                                                               ', 9, 4, 0, CAST(N'2017-01-11T19:47:56.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3874, N'RAT49GWCJRTYOC5ME   ', N'Allen                                                                                               ', N'Ralph                                                                                               ', 15, 5, 0, CAST(N'2017-01-11T19:47:56.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3875, N'ASJIMADAVTRRAB4AS   ', N'Starbeam                                                                                            ', N'Aleksander                                                                                          ', 3, 5, 0, CAST(N'2017-01-11T19:47:56.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3876, N'HADW4H5ELCMBB1F3B   ', N'Amsel                                                                                               ', N'Harmony                                                                                             ', 52, 7, 0, CAST(N'2017-01-11T19:47:56.300' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3877, N'SG5SM5CKJHA2SX2NW   ', N'Golddust                                                                                            ', N'Sweetstar                                                                                           ', 12, 4, 0, CAST(N'2017-01-11T19:47:56.373' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3878, N'BMHHSKKJPI9YKF204   ', N'Meissner                                                                                            ', N'Bob                                                                                                 ', 35, 5, 0, CAST(N'2017-01-11T19:47:56.397' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3879, N'LBOLH6KNL24EFMD4S   ', N'Brown                                                                                               ', N'Loyd                                                                                                ', 6, 2, 0, CAST(N'2017-01-11T19:47:56.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3880, N'JGEYU01LX4270LDR7   ', N'Glittercloud                                                                                        ', N'Jochim                                                                                              ', 21, 2, 0, CAST(N'2017-01-11T19:47:56.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3881, N'ZLL3IM0OTNVMTSOVW   ', N'Leelo                                                                                               ', N'Za re                                                                                               ', 58, 8, 0, CAST(N'2017-01-11T19:47:56.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3882, N'BMFH0TRSJ6Q6VI0OE   ', N'McSpuddy                                                                                            ', N'Blair                                                                                               ', 64, 7, 0, CAST(N'2017-01-11T19:47:56.513' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3883, N'NS09UU0VLRKHI8B5B   ', N'Seton                                                                                               ', N'Nina                                                                                                ', 38, 3, 0, CAST(N'2017-01-11T19:47:56.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3884, N'SSPN8OGUXTIA37BSP   ', N'Simpkin                                                                                             ', N'Silverfrost                                                                                         ', 7, 2, 0, CAST(N'2017-01-11T19:47:56.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3885, N'TGJ2PV8XNCDT5WLL7   ', N'Goldworthy                                                                                          ', N'Titania                                                                                             ', 70, 8, 0, CAST(N'2017-01-11T19:47:56.593' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3886, N'FDWQVBGXTDDPWELWE   ', N'Dulcinea                                                                                            ', N'Fluttersheen                                                                                        ', 18, 7, 0, CAST(N'2017-01-11T19:47:56.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3887, N'KS3UKWG1PW75RLW23   ', N'Sackville                                                                                           ', N'Kerr                                                                                                ', 30, 6, 0, CAST(N'2017-01-11T19:47:56.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3888, N'HKGJQCN0VX62J3WDA   ', N'Klowee                                                                                              ', N'Henna                                                                                               ', 10, 3, 0, CAST(N'2017-01-11T19:47:56.657' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3889, N'LBAX8JF4MH1KLS86S   ', N'Brown                                                                                               ', N'Lalla                                                                                               ', 41, 5, 0, CAST(N'2017-01-11T19:47:56.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3890, N'ASNMEXN4RI0HEA8I0   ', N'Scourge                                                                                             ', N'Aurel                                                                                               ', 4, 4, 0, CAST(N'2017-01-11T19:47:56.693' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3891, N'CSUQ3KN7O2UW8HJMO   ', N'Schuler                                                                                             ', N'Clearkiss                                                                                           ', 19, 5, 0, CAST(N'2017-01-11T19:47:56.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3892, N'DG7F90V6U3TS00JYV   ', N'Glitterfluff                                                                                        ', N'Dirk                                                                                                ', 36, 1, 0, CAST(N'2017-01-11T19:47:56.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3893, N'ASEIXLV9QMN9U7U3L   ', N'Sideswipe                                                                                           ', N'Annukka                                                                                             ', 13, 5, 0, CAST(N'2017-01-11T19:47:56.763' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3894, N'RSR84149WNM5MOUES   ', N'Slayer                                                                                              ', N'Ruairidh                                                                                            ', 42, 3, 0, CAST(N'2017-01-11T19:47:56.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3895, N'HGLML8VCM6HOOE68A   ', N'Gentlemoon                                                                                          ', N'Hannah                                                                                              ', 5, 8, 0, CAST(N'2017-01-11T19:47:56.800' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3896, N'DSB0Y2BBY8GH9D6UO   ', N'Seedfarmer                                                                                          ', N'Daniel                                                                                              ', 39, 5, 0, CAST(N'2017-01-11T19:47:56.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3897, N'ZR5EG93FORB0B3HN7   ', N'Ra                                                                                                  ', N'Zyanya                                                                                              ', 33, 6, 0, CAST(N'2017-01-11T19:47:56.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3898, N'GSI4MNBEUSAW4KH0E   ', N'Sherman                                                                                             ', N'Goldshy                                                                                             ', 16, 7, 0, CAST(N'2017-01-11T19:47:56.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3899, N'AGCI4U3IKB5F5ASSV   ', N'Griffin                                                                                             ', N'Applebreeze                                                                                         ', 2, 5, 0, CAST(N'2017-01-11T19:47:56.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3900, N'PC2VHOJHWD48QARGA   ', N'Clarkson                                                                                            ', N'Prisca                                                                                              ', 71, 7, 0, CAST(N'2017-01-11T19:47:56.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3901, N'SIVAYWBLMVYRRY39S   ', N'Itzel                                                                                               ', N'Spud                                                                                                ', 17, 3, 0, CAST(N'2017-01-11T19:47:56.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3902, N'KSMOCQRKYXWKDY3V7   ', N'Schmid                                                                                              ', N'Knut                                                                                                ', 40, 1, 0, CAST(N'2017-01-11T19:47:56.947' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3903, N'ZASR0CQNUIQ076E1V   ', N'Age                                                                                                 ', N'Zyanya                                                                                              ', 11, 4, 0, CAST(N'2017-01-11T19:47:56.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3904, N'AMN6HJIQK1LJ9VPTE   ', N'McNaughton                                                                                          ', N'Alodia                                                                                              ', 20, 6, 0, CAST(N'2017-01-11T19:47:57.007' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3905, N'DKDKUDYPW3KCTUPHS   ', N'Kreka                                                                                               ', N'David                                                                                               ', 28, 1, 0, CAST(N'2017-01-11T19:47:57.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3906, N'LM7YCKQTMLFUVK1AA   ', N'Marika                                                                                              ', N'Lalia                                                                                               ', 14, 5, 0, CAST(N'2017-01-11T19:47:57.053' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3907, N'ARWDPE7SYNDNGJ1WO   ', N'Ruairi                                                                                              ', N'Assassin                                                                                            ', 8, 7, 0, CAST(N'2017-01-11T19:47:57.073' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3908, N'CMK0FPEY8GWVXSTOP   ', N'McNaughton                                                                                          ', N'C emgein                                                                                            ', 29, 8, 0, CAST(N'2017-01-11T19:48:03.483' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3909, N'AOEEWX63XYRF0I5H7   ', N'Optimus                                                                                             ', N'Alfred                                                                                              ', 9, 1, 0, CAST(N'2017-01-11T19:48:03.513' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3910, N'DPR34CE340QBR15SE   ', N'Proudfoot                                                                                           ', N'Defensor                                                                                            ', 15, 7, 0, CAST(N'2017-01-11T19:48:03.533' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3911, N'PSY7RYE60JKQM8GX4   ', N'Sackville                                                                                           ', N'Pansy                                                                                               ', 3, 6, 0, CAST(N'2017-01-11T19:48:03.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3912, N'SSBVXDM56KKNEPG9B   ', N'Saraste                                                                                             ', N'Sweetwing                                                                                           ', 52, 4, 0, CAST(N'2017-01-11T19:48:03.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3913, N'ZSOK5SU5CLJJ77GLI   ', N'Starscream                                                                                          ', N'Zyanya                                                                                              ', 12, 5, 0, CAST(N'2017-01-11T19:48:03.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3914, N'ADVOSEU886DY1ERP7   ', N'Donohoe                                                                                             ', N'Anni                                                                                                ', 35, 2, 0, CAST(N'2017-01-11T19:48:03.613' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3915, N'HAP3ALMCXO8I343IP   ', N'Allen                                                                                               ', N'Harmony                                                                                             ', 6, 3, 0, CAST(N'2017-01-11T19:48:03.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3916, N'ZR3RH1UB4P7EVL3TW   ', N'Rock                                                                                                ', N'Zyanya                                                                                              ', 21, 7, 0, CAST(N'2017-01-11T19:48:03.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3917, N'DSFGNF2AAQ7BN3364   ', N'Sparklemoon                                                                                         ', N'Dietfried                                                                                           ', 58, 3, 0, CAST(N'2017-01-11T19:48:03.667' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3918, N'QO9V5MTE092TPSEYL   ', N'Ogden                                                                                               ', N'Queen                                                                                               ', 64, 3, 0, CAST(N'2017-01-11T19:48:03.687' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3919, N'GG09IGADCB0MASEM0   ', N'Grubb                                                                                               ', N'Grayson                                                                                             ', 38, 5, 0, CAST(N'2017-01-11T19:48:03.707' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3920, N'PTTN0O2H3UU6CIPFH   ', N'Thompson                                                                                            ', N'Pipaluk                                                                                             ', 7, 7, 0, CAST(N'2017-01-11T19:48:03.730' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3921, N'MN1RNA2KYEOL6P0J7   ', N'Nita                                                                                                ', N'Mari                                                                                                ', 70, 2, 0, CAST(N'2017-01-11T19:48:03.753' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3922, N'HGDGUPAJ5FOIY70VE   ', N'Grubb                                                                                               ', N'Harmony                                                                                             ', 18, 1, 0, CAST(N'2017-01-11T19:48:03.773' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3923, N'DMQ514IJAGNEQO07L   ', N'Marika                                                                                              ', N'Dietfried                                                                                           ', 30, 3, 0, CAST(N'2017-01-11T19:48:03.793' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3924, N'ACX9PQHM70HTLVBBA   ', N'Carbrey                                                                                             ', N'Ailpein                                                                                             ', 10, 4, 0, CAST(N'2017-01-11T19:48:03.813' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3925, N'PKAXV5PLD1HQDDBNH   ', N'Koenig                                                                                              ', N'Phoenix                                                                                             ', 41, 2, 0, CAST(N'2017-01-11T19:48:03.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3926, N'CFH1JRPO9KB68KMR7   ', N'Force                                                                                               ', N'Carbry                                                                                              ', 4, 1, 0, CAST(N'2017-01-11T19:48:03.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3927, N'RQV8V0PV1OY1VY91L   ', N'Quickmoon                                                                                           ', N'Rhoda                                                                                               ', 19, 1, 0, CAST(N'2017-01-11T19:48:03.933' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3928, N'ASLM9T6TDQXTGY9O0   ', N'Studwick                                                                                            ', N'Applebreeze                                                                                         ', 36, 8, 0, CAST(N'2017-01-11T19:48:03.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3929, N'CBF1Q1XX39SDIOKHH   ', N'Beckham                                                                                             ', N'Corona                                                                                              ', 13, 6, 0, CAST(N'2017-01-11T19:48:03.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3930, N'JCSPWG5X9AR9B6KSO   ', N'Chubb-Baggins                                                                                       ', N'Jeremiah                                                                                            ', 42, 7, 0, CAST(N'2017-01-11T19:48:04.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3931, N'GWYSL2515ULO5DVXE   ', N'Wheeljack                                                                                           ', N'Gobnata                                                                                             ', 5, 8, 0, CAST(N'2017-01-11T19:48:04.023' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3932, N'DHCIRHD0BULLXUV9L   ', N'Hawking                                                                                             ', N'Dirk                                                                                                ', 39, 5, 0, CAST(N'2017-01-11T19:48:04.043' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3933, N'SG6W9O541EF40K623   ', N'Graves                                                                                              ', N'Silverfrost                                                                                         ', 33, 8, 0, CAST(N'2017-01-11T19:48:04.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3934, N'GMVAMIL3DGEWKK6PH   ', N'McSpuddy                                                                                            ', N'Grimalda                                                                                            ', 16, 7, 0, CAST(N'2017-01-11T19:48:04.087' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3935, N'TTQO4PD73Y9GL9HI0   ', N'Topanga                                                                                             ', N'Tasgall                                                                                             ', 2, 8, 0, CAST(N'2017-01-11T19:48:04.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3936, N'SS3EB5L6908CERHT7   ', N'Stone                                                                                               ', N'Spud                                                                                                ', 71, 4, 0, CAST(N'2017-01-11T19:48:04.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3937, N'CBAHYQL95J3R8YSYV   ', N'Baphomet                                                                                            ', N'Clearkiss                                                                                           ', 17, 1, 0, CAST(N'2017-01-11T19:48:04.147' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3938, N'MGN656S9BK2O1GSA3   ', N'Gentlemoon                                                                                          ', N'Mira                                                                                                ', 40, 3, 0, CAST(N'2017-01-11T19:48:04.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3939, N'NGHKMDKC14W83643L   ', N'Goold                                                                                               ', N'Nydia                                                                                               ', 11, 6, 0, CAST(N'2017-01-11T19:48:04.187' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3940, N'GW7Y071BD6U1N54Q0   ', N'Wheeljack                                                                                           ', N'Gigglering                                                                                          ', 20, 6, 0, CAST(N'2017-01-11T19:48:04.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3941, N'AU1DHESF3OPJPUFJH   ', N'Ulalume                                                                                             ', N'Arabella                                                                                            ', 28, 4, 0, CAST(N'2017-01-11T19:48:04.223' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3942, N'EGE2OS1E9PPGHCFVO   ', N'Glittersheen                                                                                        ', N'Everild                                                                                             ', 14, 7, 0, CAST(N'2017-01-11T19:48:04.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3943, N'ER8G60SI08JYJ2QO6   ', N'Ruairi                                                                                              ', N'Everild                                                                                             ', 8, 4, 0, CAST(N'2017-01-11T19:48:04.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3944, N'PPPRXID0FKVP40JMG   ', N'Pocahontas                                                                                          ', N'Pollyanna                                                                                           ', 29, 6, 0, CAST(N'2017-01-11T19:48:11.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3945, N'MC3H4WLYLLVLWHJXN   ', N'Calfuray                                                                                            ', N'Mooncheeks                                                                                          ', 9, 1, 0, CAST(N'2017-01-11T19:48:11.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3946, N'JCG6BCTXRMUIO0JAU   ', N'Cyra                                                                                                ', N'Jellygleam                                                                                          ', 15, 7, 0, CAST(N'2017-01-11T19:48:11.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3947, N'DLAKSJL2H6P1QPU3D   ', N'Larivaara                                                                                           ', N'Defensor                                                                                            ', 3, 8, 0, CAST(N'2017-01-11T19:48:11.933' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3948, N'HMM9YYT1N7OXI7UEK   ', N'McRae                                                                                               ', N'Hannah                                                                                              ', 52, 1, 0, CAST(N'2017-01-11T19:48:11.953' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3949, N'AZTDNKT5JQIDDE6I9   ', N'Zuleika                                                                                             ', N'Angelica                                                                                            ', 12, 4, 0, CAST(N'2017-01-11T19:48:11.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3950, N'TG72T014PRI95V6UG   ', N'Grubb                                                                                               ', N'Tiia                                                                                                ', 35, 5, 0, CAST(N'2017-01-11T19:48:11.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3951, N'HM1GB7S8FADS7LHNY   ', N'McKenzie                                                                                            ', N'Haidee                                                                                              ', 6, 8, 0, CAST(N'2017-01-11T19:48:12.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3952, N'HEE5HL17LBCO03HY6   ', N'Error                                                                                               ', N'Hannah                                                                                              ', 21, 8, 0, CAST(N'2017-01-11T19:48:12.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3953, N'AHK9681AHV65TAS4U   ', N'Hawking                                                                                             ', N'Angelica                                                                                            ', 58, 3, 0, CAST(N'2017-01-11T19:48:12.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3954, N'DAXXCM9ANV51MRSF2   ', N'Andersen                                                                                            ', N'Dan                                                                                                 ', 64, 7, 0, CAST(N'2017-01-11T19:48:12.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3955, N'CLBMJ2H9TW5XEASQ9   ', N'Leelo                                                                                               ', N'Crazy                                                                                               ', 38, 7, 0, CAST(N'2017-01-11T19:48:12.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3956, N'AS52199DJG0GGY4KR   ', N'Smith                                                                                               ', N'Aleksander                                                                                          ', 7, 1, 0, CAST(N'2017-01-11T19:48:12.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3957, N'ZPC5OV9GF0TVA7FOG   ', N'Philomel                                                                                            ', N'Zyanya                                                                                              ', 70, 5, 0, CAST(N'2017-01-11T19:48:12.133' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3958, N'PKOTVAHGL1SS3OE0N   ', N'Kreka                                                                                               ', N'Pandora                                                                                             ', 18, 8, 0, CAST(N'2017-01-11T19:48:12.153' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3959, N'AIVXJWGJHKM8WVP5D   ', N'Ibbott                                                                                              ', N'Arden                                                                                               ', 30, 3, 0, CAST(N'2017-01-11T19:48:12.173' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3960, N'FS0I9YWOLQ9V69C26   ', N'School                                                                                              ', N'Flitterstar                                                                                         ', 10, 7, 0, CAST(N'2017-01-11T19:48:12.277' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3961, N'NM7LWLWRIA4B0GN6U   ', N'McRae                                                                                               ', N'Nina                                                                                                ', 41, 4, 0, CAST(N'2017-01-11T19:48:12.297' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3962, N'BL43X1CTQVVJFNYXX   ', N'Lightfoot                                                                                           ', N'Bob                                                                                                 ', 4, 4, 0, CAST(N'2017-01-11T19:48:12.367' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3963, N'KNXHF84XGFQ3HDAQG   ', N'Nita                                                                                                ', N'Kerr                                                                                                ', 19, 8, 0, CAST(N'2017-01-11T19:48:12.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3964, N'TNNVS2KWSHPV2CAEU   ', N'Nevin                                                                                               ', N'Tasgall                                                                                             ', 36, 8, 0, CAST(N'2017-01-11T19:48:12.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3965, N'FUHAA9C0I0KE42L7C   ', N'Ulalume                                                                                             ', N'Forest                                                                                              ', 13, 1, 0, CAST(N'2017-01-11T19:48:12.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3966, N'SB7ON3SYU2J7O1LUQ   ', N'Bunce                                                                                               ', N'Sally                                                                                               ', 42, 1, 0, CAST(N'2017-01-11T19:48:12.460' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3967, N'DP235AK3KKDQQQVN9   ', N'Peacespirit                                                                                         ', N'Dirtgreaser                                                                                         ', 5, 2, 0, CAST(N'2017-01-11T19:48:12.483' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3968, N'HR86SWJ6G586KX7RX   ', N'Rock                                                                                                ', N'Henna                                                                                               ', 39, 3, 0, CAST(N'2017-01-11T19:48:12.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3969, N'BKLU0CR5M673DG745   ', N'Kiiskinen                                                                                           ', N'Beeatriks                                                                                           ', 33, 6, 0, CAST(N'2017-01-11T19:48:12.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3970, N'DTYK6Q05S76Y5X7FC   ', N'Twinkleeyes                                                                                         ', N'Double                                                                                              ', 16, 5, 0, CAST(N'2017-01-11T19:48:12.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3971, N'DSSYNXR9IP1I7NI8U   ', N'Saraste                                                                                             ', N'Dina                                                                                                ', 2, 4, 0, CAST(N'2017-01-11T19:48:12.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3972, N'CNIC1R87UR0BRMIV9   ', N'Nita                                                                                                ', N'Cyra                                                                                                ', 71, 5, 0, CAST(N'2017-01-11T19:48:12.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3973, N'DMCQIY0BKAUTTCTOQ   ', N'McBelle                                                                                             ', N'Daniel                                                                                              ', 17, 4, 0, CAST(N'2017-01-11T19:48:12.600' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3974, N'JQPGOE8BQBTQLTT0X   ', N'Quickberry                                                                                          ', N'Jochim                                                                                              ', 40, 3, 0, CAST(N'2017-01-11T19:48:12.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3975, N'GGJU6L0EGUO9NJ5TG   ', N'Goldworthy                                                                                          ', N'Gerda                                                                                               ', 11, 4, 0, CAST(N'2017-01-11T19:48:12.640' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3976, N'BF98JFFDSVN28I5GU   ', N'Fraser                                                                                              ', N'Belle                                                                                               ', 20, 8, 0, CAST(N'2017-01-11T19:48:12.657' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3977, N'LS3M1M7HIFHLA8G9C   ', N'Saraste                                                                                             ', N'Lalla                                                                                               ', 28, 5, 0, CAST(N'2017-01-11T19:48:12.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3978, N'STGC81FGOGHI3PGLJ   ', N'T k                                                                                                 ', N'Sleek                                                                                               ', 14, 2, 0, CAST(N'2017-01-11T19:48:12.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3979, N'JVT1EGNGUHGEU8GWQ   ', N'Venom                                                                                               ', N'Jeremiah                                                                                            ', 8, 5, 0, CAST(N'2017-01-11T19:48:12.713' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3980, N'SJJ0QWVE58QFTU4LT   ', N'Julitta                                                                                             ', N'Silvernose                                                                                          ', 29, 5, 0, CAST(N'2017-01-11T19:48:20.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3981, N'DQQ4FIVI1RKUN2FQI   ', N'Quackenbush                                                                                         ', N'Dirk                                                                                                ', 9, 1, 0, CAST(N'2017-01-11T19:48:20.593' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3982, N'CMX735VLWBFAI9QU8   ', N'Marcas                                                                                              ', N'Chickenchaser                                                                                       ', 15, 8, 0, CAST(N'2017-01-11T19:48:20.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3983, N'CMNLGYBK9DD338QIM   ', N'Moongaze                                                                                            ', N'Chickenchaser                                                                                       ', 3, 1, 0, CAST(N'2017-01-11T19:48:20.657' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3984, N'HG9VGTBTW1VDLUOVP   ', N'Glitterfluff                                                                                        ', N'Highbrow                                                                                            ', 52, 7, 0, CAST(N'2017-01-11T19:48:20.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3985, N'TBSNBUJWYLOP8J0CM   ', N'Breakdown                                                                                           ', N'Twinkleberry                                                                                        ', 12, 6, 0, CAST(N'2017-01-11T19:48:20.793' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3986, N'TS6DH9QV5MOL010NT   ', N'Simpkin                                                                                             ', N'Titania                                                                                             ', 35, 5, 0, CAST(N'2017-01-11T19:48:20.813' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3987, N'MCDG6VQY17I1U8BSI   ', N'Carbrey                                                                                             ', N'Maitland                                                                                            ', 6, 5, 0, CAST(N'2017-01-11T19:48:20.847' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3988, N'RAJJTHQ2XQCGOFLW8   ', N'Animal                                                                                              ', N'Riina                                                                                               ', 21, 8, 0, CAST(N'2017-01-11T19:48:20.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3989, N'CCW91WY24RBDHXL9F   ', N'Cyra                                                                                                ', N'C emgein                                                                                            ', 58, 5, 0, CAST(N'2017-01-11T19:48:20.890' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3990, N'SR4COJY50B6SB5WD4   ', N'Rippersnapper                                                                                       ', N'Silverfrost                                                                                         ', 64, 1, 0, CAST(N'2017-01-11T19:48:20.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3991, N'RCTQ2DF4CD4LV4W1I   ', N'Calfuray                                                                                            ', N'Rein                                                                                                ', 38, 1, 0, CAST(N'2017-01-11T19:48:20.953' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3992, N'RZN5JK772VY4XT8T1   ', N'Zaragamba                                                                                           ', N'Ross                                                                                                ', 7, 1, 0, CAST(N'2017-01-11T19:48:20.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3993, N'LAU8766BXGSKR1JXP   ', N'Amsel                                                                                               ', N'Lightspeed                                                                                          ', 70, 6, 0, CAST(N'2017-01-11T19:48:20.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3994, N'QI8WELEA4HSGKIJAW   ', N'Ibbott                                                                                              ', N'Quickdance                                                                                          ', 18, 3, 0, CAST(N'2017-01-11T19:48:21.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3995, N'UKE127ED01MVEPUEL   ', N'Keith                                                                                               ', N'Ultra                                                                                               ', 30, 6, 0, CAST(N'2017-01-11T19:48:21.047' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3996, N'RS4EF1UCC3KOYPU20   ', N'Studwick                                                                                            ', N'Rowan                                                                                               ', 10, 4, 0, CAST(N'2017-01-11T19:48:22.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3997, N'SCCTW22G39N4LDYT2   ', N'Cringleberry                                                                                        ', N'Silvernose                                                                                          ', 41, 6, 0, CAST(N'2017-01-11T19:48:22.687' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3998, N'DR28AVIFFBMW6DYGG   ', N'Rowander                                                                                            ', N'Daisy                                                                                               ', 4, 6, 0, CAST(N'2017-01-11T19:48:22.713' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (3999, N'JS9BXIIIBVGC0K9L6   ', N'Studwick                                                                                            ', N'Jemmy                                                                                               ', 19, 4, 0, CAST(N'2017-01-11T19:48:22.743' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4000, N'SRGEM4IL7FARURKPU   ', N'Rock                                                                                                ', N'Sheard                                                                                              ', 36, 1, 0, CAST(N'2017-01-11T19:48:22.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4001, N'SWNIAQIO3Y57OYVUK   ', N'Warrick                                                                                             ', N'Silvernose                                                                                          ', 13, 5, 0, CAST(N'2017-01-11T19:48:22.813' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4002, N'ASDVNKXNF1309XVIY   ', N'Sackville                                                                                           ', N'Anni                                                                                                ', 42, 5, 0, CAST(N'2017-01-11T19:48:22.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4003, N'TGK0B6XQBKWF357MN   ', N'Goold                                                                                               ', N'Tasgall                                                                                             ', 5, 4, 0, CAST(N'2017-01-11T19:48:22.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4004, N'KGR30SXU85RUXDIQD   ', N'Golddust                                                                                            ', N'Kerr                                                                                                ', 39, 5, 0, CAST(N'2017-01-11T19:48:22.903' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4005, N'DSY6NFXX4OLARKTV2   ', N'Sludge                                                                                              ', N'Dirtgreaser                                                                                         ', 33, 6, 0, CAST(N'2017-01-11T19:48:22.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4006, N'PAOK19EWFQJ3CJTJG   ', N'Alberts                                                                                             ', N'Pigplanter                                                                                          ', 16, 6, 0, CAST(N'2017-01-11T19:48:22.967' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4007, N'UFUNOUD0CAEJ7Q5N6   ', N'Flutternose                                                                                         ', N'Ultra                                                                                               ', 2, 8, 0, CAST(N'2017-01-11T19:48:22.997' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4008, N'JSP262542T928GGGN   ', N'Siiri                                                                                               ', N'Johanna                                                                                             ', 71, 6, 0, CAST(N'2017-01-11T19:48:23.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4009, N'CRFGJVL2EV7UTFG42   ', N'Ranald                                                                                              ', N'Carbry                                                                                              ', 17, 2, 0, CAST(N'2017-01-11T19:48:23.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4010, N'PH9U13D64E2EU5QWJ   ', N'Hornblower                                                                                          ', N'Pipaluk                                                                                             ', 40, 1, 0, CAST(N'2017-01-11T19:48:23.057' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4011, N'ALMJ8IL5AF1ANMQ8Q   ', N'Leelo                                                                                               ', N'Aloysius                                                                                            ', 11, 8, 0, CAST(N'2017-01-11T19:48:23.077' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4012, N'CPTNV5L96YVPHU2DG   ', N'Paasivirta                                                                                          ', N'Carbry                                                                                              ', 20, 6, 0, CAST(N'2017-01-11T19:48:23.097' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4013, N'ZS6C3JT8C0UMAC2ON   ', N'Sugarkiss                                                                                           ', N'Zyanya                                                                                              ', 28, 4, 0, CAST(N'2017-01-11T19:48:23.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4014, N'BG0QKQLC2JP5C2DH5   ', N'Gears                                                                                               ', N'Beeatriks                                                                                           ', 14, 8, 0, CAST(N'2017-01-11T19:48:23.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4015, N'GSDFQ6TB8KO24JDTC   ', N'Sludge                                                                                              ', N'Gears                                                                                               ', 8, 2, 0, CAST(N'2017-01-11T19:48:23.157' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4016, N'WPII9NB5OCGT1EP42   ', N'Payton                                                                                              ', N'Webster                                                                                             ', 29, 3, 0, CAST(N'2017-01-11T19:48:30.440' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4017, N'DRU7F2J5UDFQTWPG9   ', N'Rowander                                                                                            ', N'Defensor                                                                                            ', 9, 2, 0, CAST(N'2017-01-11T19:48:30.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4018, N'HS2B4OI8RW96N41KX   ', N'Sugarkiss                                                                                           ', N'Hingle                                                                                              ', 15, 8, 0, CAST(N'2017-01-11T19:48:30.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4019, N'DHVPLVACHG4OPSBDG   ', N'Hietamies                                                                                           ', N'Defensor                                                                                            ', 3, 4, 0, CAST(N'2017-01-11T19:48:30.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4020, N'ALM3YPQATI3HASB1U   ', N'Lightfoot                                                                                           ', N'Aili                                                                                                ', 52, 6, 0, CAST(N'2017-01-11T19:48:30.547' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4021, N'GPS7MCQEP2WW50M5J   ', N'Peacespirit                                                                                         ', N'Gerda                                                                                               ', 12, 1, 0, CAST(N'2017-01-11T19:48:30.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4022, N'CI6VSQYDV3VTWHMHQ   ', N'Itzel                                                                                               ', N'Carbry                                                                                              ', 35, 4, 0, CAST(N'2017-01-11T19:48:30.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4023, N'AA0AAXQHLLQDY7XA9   ', N'Age                                                                                                 ', N'Annukka                                                                                             ', 6, 7, 0, CAST(N'2017-01-11T19:48:30.600' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4024, N'PSDYHDYGRMQ9ROXLG   ', N'Sugarkiss                                                                                           ', N'Piloqutinnguaq                                                                                      ', 21, 1, 0, CAST(N'2017-01-11T19:48:30.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4025, N'CL7DYKQKH6KSSE9EX   ', N'Lashawnda                                                                                           ', N'Crush                                                                                               ', 58, 6, 0, CAST(N'2017-01-11T19:48:30.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4026, N'CGWRCE6JT8JLEE92C   ', N'Goold                                                                                               ', N'Chickenfarmer                                                                                       ', 64, 8, 0, CAST(N'2017-01-11T19:48:30.660' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4027, N'CQQ6TLXNJQE4F3KUT   ', N'Quackenbush                                                                                         ', N'Chickenchaser                                                                                       ', 38, 5, 0, CAST(N'2017-01-11T19:48:30.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4028, N'UV4U016MPRD18LK71   ', N'Viktoria                                                                                            ', N'Ultra                                                                                               ', 7, 8, 0, CAST(N'2017-01-11T19:48:30.703' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4029, N'EFBYOM6PLB7G2SVBQ   ', N'Force                                                                                               ', N'Elsdon                                                                                              ', 70, 4, 0, CAST(N'2017-01-11T19:48:30.727' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4030, N'WBNNU2EORC7CUAVMX   ', N'Blake                                                                                               ', N'Webster                                                                                             ', 18, 6, 0, CAST(N'2017-01-11T19:48:30.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4031, N'MKUQINESNW1ROH7RM   ', N'Kiiskinen                                                                                           ', N'Mooncheeks                                                                                          ', 30, 3, 0, CAST(N'2017-01-11T19:48:30.767' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4032, N'SH8GP3MRTX0OHY73T   ', N'Hanley                                                                                              ', N'Sally                                                                                               ', 10, 1, 0, CAST(N'2017-01-11T19:48:30.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4033, N'BM2U7AEVJGU7JOIVC   ', N'Maoilios                                                                                            ', N'Belle                                                                                               ', 41, 3, 0, CAST(N'2017-01-11T19:48:30.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4034, N'EMR8K4TUVIT04NHJQ   ', N'Miles                                                                                               ', N'Elsdon                                                                                              ', 4, 4, 0, CAST(N'2017-01-11T19:48:30.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4035, N'DPYC8PTXR2NGXUSNF   ', N'Prowl                                                                                               ', N'Dolly-Sue                                                                                           ', 19, 6, 0, CAST(N'2017-01-11T19:48:30.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4036, N'ASSQPXL2HKIY0K4HX   ', N'Starbeam                                                                                            ', N'Alfred                                                                                              ', 36, 1, 0, CAST(N'2017-01-11T19:48:30.883' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4037, N'PM6FVCT1NLHVR34S5   ', N'McNaughton                                                                                          ', N'Pipaluk                                                                                             ', 13, 6, 0, CAST(N'2017-01-11T19:48:30.907' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4038, N'MPDJKYT4K6CBMAFWT   ', N'Potatochaser                                                                                        ', N'Maitland                                                                                            ', 42, 7, 0, CAST(N'2017-01-11T19:48:30.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4039, N'RM3WXSA3V8A479FK8   ', N'Meissner                                                                                            ', N'Rollo                                                                                               ', 5, 2, 0, CAST(N'2017-01-11T19:48:30.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4040, N'ASWBF027MQ5M9YQDQ   ', N'Sandheaver                                                                                          ', N'Aleksandra                                                                                          ', 39, 2, 0, CAST(N'2017-01-11T19:48:30.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4041, N'RS4F3L1AIAY2362IF   ', N'Sulin                                                                                               ', N'Rowan                                                                                               ', 33, 3, 0, CAST(N'2017-01-11T19:48:31.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4042, N'SLTSGFH9UCXUN525T   ', N'Lightfoot                                                                                           ', N'Scourge                                                                                             ', 16, 4, 0, CAST(N'2017-01-11T19:48:31.040' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4043, N'RG1W42HCQWRBHCDAJ   ', N'Golddust                                                                                            ', N'Rollie                                                                                              ', 2, 6, 0, CAST(N'2017-01-11T19:48:31.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4044, N'RADLBGPBWXQ7AUDLQ   ', N'Allsopp                                                                                             ', N'Robert                                                                                              ', 71, 5, 0, CAST(N'2017-01-11T19:48:31.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4045, N'DC80SOHFMGLQCKOE8   ', N'Clarkson                                                                                            ', N'Dirk                                                                                                ', 17, 4, 0, CAST(N'2017-01-11T19:48:31.097' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4046, N'UKKOY3PESHLM42OQF   ', N'Kiiskinen                                                                                           ', N'Ultra                                                                                               ', 40, 6, 0, CAST(N'2017-01-11T19:48:31.117' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4047, N'SBE3GAHII0G66RYJX   ', N'Blitzwing                                                                                           ', N'Sally                                                                                               ', 11, 1, 0, CAST(N'2017-01-11T19:48:31.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4048, N'RB5HT4WHU2EYQQY7B   ', N'Beckham                                                                                             ', N'Rowan                                                                                               ', 20, 4, 0, CAST(N'2017-01-11T19:48:31.157' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4049, N'AMYVBBOLKK9HSGA0T   ', N'Marcas                                                                                              ', N'Arnie                                                                                               ', 28, 6, 0, CAST(N'2017-01-11T19:48:31.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4050, N'DJOAO55KWM8ADFAM8   ', N'Jeffers                                                                                             ', N'Defensor                                                                                            ', 14, 8, 0, CAST(N'2017-01-11T19:48:31.217' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4051, N'HMVDCR5NS72P8MLRW   ', N'Mirjam                                                                                              ', N'Henna                                                                                               ', 8, 3, 0, CAST(N'2017-01-11T19:48:31.237' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4052, N'JBSHUVIICA9A9GJ0Q   ', N'Brown                                                                                               ', N'Jellygleam                                                                                          ', 29, 8, 0, CAST(N'2017-01-11T19:48:41.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4053, N'BIC9PWQKEV3LV5TGM   ', N'Itzel                                                                                               ', N'Blair                                                                                               ', 9, 4, 0, CAST(N'2017-01-11T19:48:41.757' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4054, N'DFV2KXYNGGVXIT5VJ   ', N'Fraser                                                                                              ', N'Daniel                                                                                              ', 15, 5, 0, CAST(N'2017-01-11T19:48:41.803' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4055, N'DK359KXQC0PDC1G18   ', N'Kristiina                                                                                           ', N'Dirtgreaser                                                                                         ', 3, 3, 0, CAST(N'2017-01-11T19:48:41.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4056, N'RSNX3L6SELJPYQRH4   ', N'Starscream                                                                                          ', N'Rollie                                                                                              ', 52, 6, 0, CAST(N'2017-01-11T19:48:41.877' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4057, N'KMU1R86WA5D5TX3LT   ', N'Mirjam                                                                                              ', N'Kermit                                                                                              ', 12, 5, 0, CAST(N'2017-01-11T19:48:41.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4058, N'PGETM9EYCP7GGME2P   ', N'Gentlemoon                                                                                          ', N'Pandora                                                                                             ', 35, 6, 0, CAST(N'2017-01-11T19:48:41.963' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4059, N'SSS1XHD65TUC411B4   ', N'Starscream                                                                                          ', N'Silvernose                                                                                          ', 6, 4, 0, CAST(N'2017-01-11T19:48:42.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4060, N'TSCSSIL87EONQPBR1   ', N'School                                                                                              ', N'Tasgall                                                                                             ', 21, 3, 0, CAST(N'2017-01-11T19:48:42.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4061, N'QG276C27IGMGBPBEF   ', N'Graves                                                                                              ', N'Queen                                                                                               ', 58, 5, 0, CAST(N'2017-01-11T19:48:42.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4062, N'FS9AUY2AF0GV6WMJ4   ', N'Saraste                                                                                             ', N'Fergus                                                                                              ', 64, 3, 0, CAST(N'2017-01-11T19:48:42.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4063, N'DGS3O09DHLA8SLX01   ', N'Glitterfluff                                                                                        ', N'Dietfried                                                                                           ', 38, 7, 0, CAST(N'2017-01-11T19:48:42.170' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4064, N'JR06DL9GD54NMS94P   ', N'Roxelana                                                                                            ', N'Jessamine                                                                                           ', 7, 4, 0, CAST(N'2017-01-11T19:48:42.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4065, N'TZ7A189J9OX3G0K9F   ', N'Zaragamba                                                                                           ', N'Twinkleleaf                                                                                         ', 70, 1, 0, CAST(N'2017-01-11T19:48:42.247' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4066, N'NSQ2V9HMBARF3PVPB   ', N'Seton                                                                                               ', N'Nydia                                                                                               ', 18, 7, 0, CAST(N'2017-01-11T19:48:42.290' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4067, N'OSIXEWOR9EF6JLHAW   ', N'Smith                                                                                               ', N'Odell                                                                                               ', 30, 4, 0, CAST(N'2017-01-11T19:48:42.353' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4068, N'AR2Q9XWUBY8I6ASQS   ', N'Rippersnapper                                                                                       ', N'Aurel                                                                                               ', 10, 5, 0, CAST(N'2017-01-11T19:48:42.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4069, N'NS9UXJWX7J2X1H4UI   ', N'Sideswipe                                                                                           ', N'Nydia                                                                                               ', 41, 4, 0, CAST(N'2017-01-11T19:48:42.450' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4070, N'BSSMRL5194VAN6FBE   ', N'Sparklemoon                                                                                         ', N'Bob                                                                                                 ', 4, 5, 0, CAST(N'2017-01-11T19:48:42.487' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4071, N'MM0QG7446NPPHEQF4   ', N'MacClelland                                                                                         ', N'Morgen                                                                                              ', 19, 7, 0, CAST(N'2017-01-11T19:48:42.520' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4072, N'BDJIB8C689J1432V0   ', N'Doommate                                                                                            ', N'Barleyfarmer                                                                                        ', 36, 7, 0, CAST(N'2017-01-11T19:48:42.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4073, N'OSAWN2S5JAHTO22JE   ', N'Sparklemoon                                                                                         ', N'Outi                                                                                                ', 13, 7, 0, CAST(N'2017-01-11T19:48:42.607' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4074, N'AR1S7P0BIF5L5YN40   ', N'Rock                                                                                                ', N'Alasdair                                                                                            ', 42, 6, 0, CAST(N'2017-01-11T19:48:42.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4075, N'ZHKL2Q8DK0YXRNYKW   ', N'Heyward                                                                                             ', N'Za re                                                                                               ', 5, 3, 0, CAST(N'2017-01-11T19:48:42.727' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4076, N'SQL37K0K63NVNKLI4   ', N'Quickmoon                                                                                           ', N'Sleek                                                                                               ', 39, 1, 0, CAST(N'2017-01-11T19:48:42.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4077, N'DHIK80FMEOG43QWA7   ', N'Hietamies                                                                                           ', N'Daisy                                                                                               ', 33, 3, 0, CAST(N'2017-01-11T19:48:42.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4078, N'JAWRK9FT6S40R5JJL   ', N'Aylen                                                                                               ', N'Jessamine                                                                                           ', 16, 3, 0, CAST(N'2017-01-11T19:48:42.897' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4079, N'GGM5X3VRIU3SC5J60   ', N'Gently                                                                                              ', N'Gobnata                                                                                             ', 2, 5, 0, CAST(N'2017-01-11T19:48:42.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4080, N'SR1CABVYAXQN0J5FE   ', N'Rock                                                                                                ', N'Sean                                                                                                ', 71, 8, 0, CAST(N'2017-01-11T19:48:42.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4081, N'SV7FXWU27IK3UQGK3   ', N'Venom                                                                                               ', N'Sam                                                                                                 ', 17, 1, 0, CAST(N'2017-01-11T19:48:43.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4082, N'DGR8SX3593EFHFR10   ', N'Gently                                                                                              ', N'Double                                                                                              ', 40, 7, 0, CAST(N'2017-01-11T19:48:43.070' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4083, N'RMB1N0B7BN7Q453HV   ', N'McKenzie                                                                                            ', N'Ruairidh                                                                                            ', 11, 5, 0, CAST(N'2017-01-11T19:48:43.097' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4084, N'ALOPTEJ6HO7NVM3S3   ', N'Larivaara                                                                                           ', N'Alfred                                                                                              ', 20, 7, 0, CAST(N'2017-01-11T19:48:43.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4085, N'PSVSI1JAD913QTEWS   ', N'Seton                                                                                               ', N'Powerglide                                                                                          ', 28, 5, 0, CAST(N'2017-01-11T19:48:43.153' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4086, N'MG2W6MID9SUIK1P2H   ', N'Griffin                                                                                             ', N'Marika                                                                                              ', 14, 3, 0, CAST(N'2017-01-11T19:48:43.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4087, N'RBFLC2QCFTTECIPDO   ', N'Brandagamba                                                                                         ', N'Rein                                                                                                ', 8, 3, 0, CAST(N'2017-01-11T19:48:43.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4088, N'MN7YO517PLMAHW1C6   ', N'Nita                                                                                                ', N'Methoataske                                                                                         ', 29, 2, 0, CAST(N'2017-01-11T19:48:50.477' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4089, N'LDKOUJ86VML6AE1OD   ', N'Doommate                                                                                            ', N'Lalia                                                                                               ', 9, 7, 0, CAST(N'2017-01-11T19:48:50.500' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4090, N'FBRRJ68AR6FM4LCS3   ', N'Breakdown                                                                                           ', N'Forest                                                                                              ', 15, 7, 0, CAST(N'2017-01-11T19:48:50.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4091, N'GSXU7R8DNP92XSNXR   ', N'Smith                                                                                               ', N'Goldshy                                                                                             ', 3, 2, 0, CAST(N'2017-01-11T19:48:50.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4092, N'JSBKE7GCTQ9XQAN9Y   ', N'Sigrid                                                                                              ', N'Jellygleam                                                                                          ', 52, 7, 0, CAST(N'2017-01-11T19:48:50.567' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4093, N'LMO9KLOB0R8UJRNK6   ', N'Meissner                                                                                            ', N'Loviise                                                                                             ', 12, 4, 0, CAST(N'2017-01-11T19:48:50.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4094, N'MAUC88OFVB2ADYYPV   ', N'Andersen                                                                                            ', N'Mira                                                                                                ', 35, 1, 0, CAST(N'2017-01-11T19:48:50.607' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4095, N'CBPQPFGIMUWSFOAID   ', N'Bunce                                                                                               ', N'C emgein                                                                                            ', 6, 2, 0, CAST(N'2017-01-11T19:48:50.627' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4096, N'AK2GWTOISVVP76ATK   ', N'Kaisa                                                                                               ', N'Amanda                                                                                              ', 21, 5, 0, CAST(N'2017-01-11T19:48:50.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4097, N'DAF539VHXWVL0OA6R   ', N'Animal                                                                                              ', N'Donnamira                                                                                           ', 58, 1, 0, CAST(N'2017-01-11T19:48:50.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4098, N'MJM8RVVKUGP1TVLAH   ', N'Junge                                                                                               ', N'Maitland                                                                                            ', 64, 7, 0, CAST(N'2017-01-11T19:48:50.687' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4099, N'AFYXXA4K1HOXMDLMO   ', N'Force                                                                                               ', N'Atomic                                                                                              ', 38, 6, 0, CAST(N'2017-01-11T19:48:50.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4100, N'HGSCFHVOQ0JHO3WF6   ', N'Gamgee                                                                                              ', N'Haidee                                                                                              ', 7, 8, 0, CAST(N'2017-01-11T19:48:50.730' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4101, N'AG0F44VRMKDWIA7JV   ', N'Glitterfluff                                                                                        ', N'Amanda                                                                                              ', 70, 6, 0, CAST(N'2017-01-11T19:48:50.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4102, N'LSD4AI4QSLDSBR7V3   ', N'Sugarfeather                                                                                        ', N'Lightspeed                                                                                          ', 18, 1, 0, CAST(N'2017-01-11T19:48:50.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4103, N'AFPTGXCQYMCP3977A   ', N'Flutternose                                                                                         ', N'Arabella                                                                                            ', 30, 4, 0, CAST(N'2017-01-11T19:48:50.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4104, N'CRK8X54TO5785YI0R   ', N'Ranald                                                                                              ', N'C emgein                                                                                            ', 10, 5, 0, CAST(N'2017-01-11T19:48:50.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4105, N'CEALBYJS1751PYIN6   ', N'Error                                                                                               ', N'Corona                                                                                              ', 41, 5, 0, CAST(N'2017-01-11T19:48:50.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4106, N'DPHP0LJVWQ0GJ6TRV   ', N'Prowl                                                                                               ', N'Douglas                                                                                             ', 4, 4, 0, CAST(N'2017-01-11T19:48:50.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4107, N'DSB4HSB0MAU0LU5KD   ', N'Siiri                                                                                               ', N'Devastator                                                                                          ', 19, 3, 0, CAST(N'2017-01-11T19:48:50.887' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4108, N'AT1HTMRYYBSS6U58R   ', N'Topanga                                                                                             ', N'Assassin                                                                                            ', 36, 1, 0, CAST(N'2017-01-11T19:48:50.907' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4109, N'RLUWBTJ3OUNC8KG1A   ', N'Lashawnda                                                                                           ', N'Ralph                                                                                               ', 13, 3, 0, CAST(N'2017-01-11T19:48:50.927' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4110, N'GW8LI8R2UVM812GCG   ', N'Warrick                                                                                             ', N'Grimalda                                                                                            ', 42, 6, 0, CAST(N'2017-01-11T19:48:50.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4111, N'CJFO6UR5QFHNU9RH6   ', N'Julitta                                                                                             ', N'Crush                                                                                               ', 5, 6, 0, CAST(N'2017-01-11T19:48:50.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4112, N'QPMSUGQ8MYB3OG3LU   ', N'Paasivirta                                                                                          ', N'Quickdance                                                                                          ', 39, 6, 0, CAST(N'2017-01-11T19:48:51.003' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4113, N'DPYH1VY8S0A0HX3X2   ', N'Paasivirta                                                                                          ', N'Diamond                                                                                             ', 33, 1, 0, CAST(N'2017-01-11T19:48:51.023' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4114, N'DB6KPHYBOK4FB5D2R   ', N'Brown                                                                                               ', N'Dazzledust                                                                                          ', 16, 8, 0, CAST(N'2017-01-11T19:48:51.043' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4115, N'AVIAVW7AUL4B4NDEY   ', N'Vorath                                                                                              ', N'Arden                                                                                               ', 2, 3, 0, CAST(N'2017-01-11T19:48:51.073' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4116, N'ASPDJJ7DR5XQXUOIN   ', N'Siiri                                                                                               ', N'Alasdair                                                                                            ', 71, 3, 0, CAST(N'2017-01-11T19:48:51.097' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4117, N'AB32QXFDW6WNQCOTU   ', N'Breakdown                                                                                           ', N'Assassin                                                                                            ', 17, 1, 0, CAST(N'2017-01-11T19:48:51.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4118, N'POA6EKFGTPQ3KJ0YK   ', N'Ogden                                                                                               ', N'Punch                                                                                               ', 40, 8, 0, CAST(N'2017-01-11T19:48:51.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4119, N'DSMULYMFYQQ0D10AR   ', N'Schmid                                                                                              ', N'David                                                                                               ', 11, 6, 0, CAST(N'2017-01-11T19:48:51.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4120, N'AJH936EJPALIEQB39   ', N'J rvinen                                                                                            ', N'Applebreeze                                                                                         ', 20, 6, 0, CAST(N'2017-01-11T19:48:51.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4121, N'RD7NF0UI2BJB0PBQN   ', N'Dazzlegaze                                                                                          ', N'Ralph                                                                                               ', 28, 5, 0, CAST(N'2017-01-11T19:48:51.203' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4122, N'KF12W7MMRUEU1FMJ6   ', N'Fairbairn                                                                                           ', N'Kadri                                                                                               ', 14, 7, 0, CAST(N'2017-01-11T19:48:51.227' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4123, N'ESDQ4MULXVEQTWMVD   ', N'Sigrid                                                                                              ', N'Eugene                                                                                              ', 8, 3, 0, CAST(N'2017-01-11T19:48:51.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4124, N'AK0SIVHQF7Y510Y14   ', N'Koenig                                                                                              ', N'Amanda                                                                                              ', 29, 2, 0, CAST(N'2017-01-11T19:48:59.763' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4125, N'MJJLDWPSHRSGNO9H1   ', N'Junge                                                                                               ', N'Mira                                                                                                ', 9, 7, 0, CAST(N'2017-01-11T19:48:59.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4126, N'SAQO1JPWDCMVIVKMP   ', N'Amsel                                                                                               ', N'Sam                                                                                                 ', 15, 8, 0, CAST(N'2017-01-11T19:48:59.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4127, N'AKXRO5O09VGBC3VQF   ', N'Kateri                                                                                              ', N'Arabella                                                                                            ', 3, 7, 0, CAST(N'2017-01-11T19:48:59.867' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4128, N'GP5VDRO35FAR6B7V4   ', N'Proudfoot                                                                                           ', N'Gobnata                                                                                             ', 52, 6, 0, CAST(N'2017-01-11T19:48:59.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4129, N'OCU9QL52HH9KQA7II   ', N'Carbrey                                                                                             ', N'Oatchaser                                                                                           ', 12, 5, 0, CAST(N'2017-01-11T19:48:59.920' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4130, N'DZON8SW57043S0IC1   ', N'Zuleika                                                                                             ', N'Dirtgreaser                                                                                         ', 35, 2, 0, CAST(N'2017-01-11T19:48:59.937' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4131, N'BT2DE855D130LHIN8   ', N'Tyrrell                                                                                             ', N'Beeatriks                                                                                           ', 6, 5, 0, CAST(N'2017-01-11T19:48:59.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4132, N'ORE2LMD4J23VDYIYF   ', N'Rock                                                                                                ', N'Octane                                                                                              ', 21, 3, 0, CAST(N'2017-01-11T19:48:59.977' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4133, N'ACL599C7FMWB86T44   ', N'Cringleberry                                                                                        ', N'Aurel                                                                                               ', 58, 6, 0, CAST(N'2017-01-11T19:48:59.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4134, N'GLGJQG4B55RU9V5WM   ', N'Larivaara                                                                                           ', N'Goldstar                                                                                            ', 64, 5, 0, CAST(N'2017-01-11T19:49:00.013' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4135, N'TCS9WUCBB6QQ2D58T   ', N'Christmas                                                                                           ', N'Titania                                                                                             ', 38, 3, 0, CAST(N'2017-01-11T19:49:00.037' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4136, N'GO0CLHCE7PK6VKGDI   ', N'Optimus                                                                                             ', N'Goldshy                                                                                             ', 7, 4, 0, CAST(N'2017-01-11T19:49:00.057' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4137, N'APC1RWKDDQJ3O3GOP   ', N'Philomel                                                                                            ', N'Amanda                                                                                              ', 70, 6, 0, CAST(N'2017-01-11T19:49:00.073' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4138, N'MSPQYBSCJRJYHKF0W   ', N'Sugarfeather                                                                                        ', N'Methoataske                                                                                         ', 18, 2, 0, CAST(N'2017-01-11T19:49:00.093' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4139, N'VSJ5GIKG9BEIIAQSE   ', N'Siiri                                                                                               ', N'Victor                                                                                              ', 30, 4, 0, CAST(N'2017-01-11T19:49:00.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4140, N'SJQ845KJ6U8XDH2X4   ', N'Jeffers                                                                                             ', N'Snowdance                                                                                           ', 10, 3, 0, CAST(N'2017-01-11T19:49:00.137' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4141, N'RG4WAJSJBV7U5Y29B   ', N'Goold                                                                                               ', N'Ralph                                                                                               ', 41, 3, 0, CAST(N'2017-01-11T19:49:00.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4142, N'LKNP5K0LDG16RNDP7   ', N'Keith                                                                                               ', N'Loyd                                                                                                ', 4, 8, 0, CAST(N'2017-01-11T19:49:00.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4143, N'GS1EC08LJH03K5D1E   ', N'Studwick                                                                                            ', N'Grimalda                                                                                            ', 19, 3, 0, CAST(N'2017-01-11T19:49:00.227' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4144, N'MN7I0L8OG1TIEDO64   ', N'Nita                                                                                                ', N'Maitland                                                                                            ', 36, 6, 0, CAST(N'2017-01-11T19:49:00.257' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4145, N'BPELN88RCLOX8K0AS   ', N'Prowl                                                                                               ', N'Bob                                                                                                 ', 13, 7, 0, CAST(N'2017-01-11T19:49:00.280' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4146, N'TBRAUNGRIMNT120M0   ', N'Bunce                                                                                               ', N'Trey                                                                                                ', 42, 2, 0, CAST(N'2017-01-11T19:49:00.360' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4147, N'KWI7DANWGQBLHXM7L   ', N'Wheeljack                                                                                           ', N'Kerr                                                                                                ', 5, 6, 0, CAST(N'2017-01-11T19:49:00.380' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4148, N'NSPA2WN0CB51C5WCB   ', N'Saraste                                                                                             ', N'Nydia                                                                                               ', 39, 7, 0, CAST(N'2017-01-11T19:49:00.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4149, N'SMWDPIN48UYG6C8G0   ', N'Manninen                                                                                            ', N'Sleek                                                                                               ', 33, 5, 0, CAST(N'2017-01-11T19:49:00.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4150, N'MTMR3D42KWX9QC84E   ', N'T k                                                                                                 ', N'Melissa                                                                                             ', 16, 2, 0, CAST(N'2017-01-11T19:49:00.473' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4151, N'UVTUQY36GGROKJJ84   ', N'Venom                                                                                               ', N'Ultra                                                                                               ', 2, 4, 0, CAST(N'2017-01-11T19:49:00.503' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4152, N'RBN986U960M8M9U1L   ', N'Baphomet                                                                                            ', N'Rein                                                                                                ', 71, 4, 0, CAST(N'2017-01-11T19:49:00.523' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4153, N'PMDNL0B8I1K178UO0   ', N'McKenzie                                                                                            ', N'Pansy                                                                                               ', 17, 1, 0, CAST(N'2017-01-11T19:49:00.540' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4154, N'SP72373C8KFK9X6HI   ', N'Philomel                                                                                            ', N'Scourge                                                                                             ', 40, 7, 0, CAST(N'2017-01-11T19:49:00.560' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4155, N'QMKQ9MBBELFG2F6SP   ', N'McBelle                                                                                             ', N'Quickdance                                                                                          ', 11, 1, 0, CAST(N'2017-01-11T19:49:00.580' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4156, N'PNRUX8BEA59VVMHXE   ', N'Nye                                                                                                 ', N'Pollyanna                                                                                           ', 20, 1, 0, CAST(N'2017-01-11T19:49:00.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4157, N'GJ4J4NJEG68SO4H9L   ', N'Junge                                                                                               ', N'Gears                                                                                               ', 28, 1, 0, CAST(N'2017-01-11T19:49:00.623' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4158, N'AJYXLUBI7O3BPTS23   ', N'Jeffers                                                                                             ', N'Aloysius                                                                                            ', 14, 4, 0, CAST(N'2017-01-11T19:49:00.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4159, N'TPBMS9JHCP28IBSEA   ', N'Privett                                                                                             ', N'Tommie                                                                                              ', 8, 5, 0, CAST(N'2017-01-11T19:49:00.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4160, N'JMVBMM2EMN0PACE9S   ', N'Mirjam                                                                                              ', N'Johanna                                                                                             ', 29, 7, 0, CAST(N'2017-01-11T19:49:07.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4161, N'RT90S1ADSOYM3UEK0   ', N'T k                                                                                                 ', N'Rein                                                                                                ', 9, 5, 0, CAST(N'2017-01-11T19:49:07.447' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4162, N'PQF3HNAGO8S2W2POP   ', N'Quickberry                                                                                          ', N'Piloqutinnguaq                                                                                      ', 15, 2, 0, CAST(N'2017-01-11T19:49:07.463' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4163, N'SJSSN3HGU9RXOJP1W   ', N'Jacobson                                                                                            ', N'Spud                                                                                                ', 3, 1, 0, CAST(N'2017-01-11T19:49:07.483' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4164, N'BB0VCOHJQSMDJQ15L   ', N'Blitzwing                                                                                           ', N'Bob                                                                                                 ', 52, 8, 0, CAST(N'2017-01-11T19:49:07.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4165, N'GGCKI4PIWTLAB81HS   ', N'Griffin                                                                                             ', N'Grapple                                                                                             ', 12, 4, 0, CAST(N'2017-01-11T19:49:07.533' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4166, N'DS7Y0BHMMCGTDXBAB   ', N'Sureshot                                                                                            ', N'Double                                                                                              ', 35, 4, 0, CAST(N'2017-01-11T19:49:07.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4167, N'DFJO6PPLSDFP6FBLI   ', N'Force                                                                                               ', N'Double                                                                                              ', 6, 5, 0, CAST(N'2017-01-11T19:49:07.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4168, N'SG4G1QXOUY92S4M2E   ', N'Grubb                                                                                               ', N'Spud                                                                                                ', 21, 4, 0, CAST(N'2017-01-11T19:49:07.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4169, N'ZSXVIXPSKH4KTTXUW   ', N'Seton                                                                                               ', N'Za re                                                                                               ', 58, 6, 0, CAST(N'2017-01-11T19:49:07.627' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4170, N'HSAKPDXRQI3HMCX64   ', N'Scavenger                                                                                           ', N'Henna                                                                                               ', 64, 8, 0, CAST(N'2017-01-11T19:49:07.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4171, N'ATN9VS5QWJ2DFTXIB   ', N'Thompson                                                                                            ', N'Angelica                                                                                            ', 38, 2, 0, CAST(N'2017-01-11T19:49:07.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4172, N'CGUDKE5US3VS919M0   ', N'Goldworthy                                                                                          ', N'Clearkiss                                                                                           ', 7, 7, 0, CAST(N'2017-01-11T19:49:07.683' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4173, N'AN72QTDTY4VP1I9X7   ', N'Nevin                                                                                               ', N'Alodia                                                                                              ', 70, 4, 0, CAST(N'2017-01-11T19:49:07.703' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4174, N'BE2G815XPNQ838KRO   ', N'Error                                                                                               ', N'Bertram                                                                                             ', 18, 4, 0, CAST(N'2017-01-11T19:49:07.723' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4175, N'SSE5EFDWUOP5VPK3V   ', N'Sherman                                                                                             ', N'Silverfrost                                                                                         ', 30, 4, 0, CAST(N'2017-01-11T19:49:07.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4176, N'DGL932D0R8JKPWV7L   ', N'Glitterfluff                                                                                        ', N'Daisy                                                                                               ', 10, 3, 0, CAST(N'2017-01-11T19:49:07.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4177, N'RMYX9GL0W9IHIEVJS   ', N'Miles                                                                                               ', N'Ralph                                                                                               ', 41, 2, 0, CAST(N'2017-01-11T19:49:07.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4178, N'THSCQND4NRD0K47CA   ', N'Hofmann                                                                                             ', N'Tasgall                                                                                             ', 4, 6, 0, CAST(N'2017-01-11T19:49:07.797' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4179, N'GK51X3L3TSDWCL7NH   ', N'Klowee                                                                                              ', N'Grapple                                                                                             ', 19, 6, 0, CAST(N'2017-01-11T19:49:07.817' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4180, N'KMC5LPK6PC7C6THS7   ', N'McBelle                                                                                             ', N'Kim                                                                                                 ', 36, 8, 0, CAST(N'2017-01-11T19:49:07.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4181, N'MGPTR4S5VD68YBH4E   ', N'Gently                                                                                              ', N'Mirjam                                                                                              ', 13, 3, 0, CAST(N'2017-01-11T19:49:07.857' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4182, N'KKJ89BK9LW1R11SWV   ', N'Keith                                                                                               ', N'Kateri                                                                                              ', 42, 7, 0, CAST(N'2017-01-11T19:49:07.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4183, N'LG9MM518XY0KL0SKA   ', N'Goold                                                                                               ', N'Loviise                                                                                             ', 5, 4, 0, CAST(N'2017-01-11T19:49:07.900' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4184, N'NSGPBR1BTIT0F74O0   ', N'Smith                                                                                               ', N'Nina                                                                                                ', 39, 7, 0, CAST(N'2017-01-11T19:49:07.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4185, N'PCNSYD1EP2NFAEFTO   ', N'Cyra                                                                                                ', N'Piloqutinnguaq                                                                                      ', 33, 6, 0, CAST(N'2017-01-11T19:49:07.967' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4186, N'DS0I6S8EV3MC2VF5V   ', N'Schuler                                                                                             ', N'Dirk                                                                                                ', 16, 3, 0, CAST(N'2017-01-11T19:49:07.983' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4187, N'AGUWN00ILMHU4LQXE   ', N'Glittercloud                                                                                        ', N'Atomic                                                                                              ', 2, 2, 0, CAST(N'2017-01-11T19:49:08.017' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4188, N'RH7LTE8HRNHRW3QAL   ', N'Hofmann                                                                                             ', N'Ruairidh                                                                                            ', 71, 7, 0, CAST(N'2017-01-11T19:49:08.037' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4189, N'BHEOH18KN7B7QA2EA   ', N'Hornblower                                                                                          ', N'Bertram                                                                                             ', 17, 6, 0, CAST(N'2017-01-11T19:49:08.060' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4190, N'BD43UUOJ0990BA22O   ', N'Da''ronda                                                                                            ', N'Bertram                                                                                             ', 40, 5, 0, CAST(N'2017-01-11T19:49:08.087' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4191, N'EHXHC2GNPR4ID0DU7   ', N'Hofmann                                                                                             ', N'Elsdon                                                                                              ', 11, 2, 0, CAST(N'2017-01-11T19:49:08.107' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4192, N'JLB6JHOMVS4F5HD6E   ', N'Lightfoot                                                                                           ', N'Johanna                                                                                             ', 20, 2, 0, CAST(N'2017-01-11T19:49:08.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4193, N'PK5K1OGQLCYX77OYV   ', N'Kateri                                                                                              ', N'Prisca                                                                                              ', 28, 7, 0, CAST(N'2017-01-11T19:49:08.143' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4194, N'MSPDUPNSNWRATVYFS   ', N'Scavenger                                                                                           ', N'Maitland                                                                                            ', 14, 6, 0, CAST(N'2017-01-11T19:49:08.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4195, N'GA2224VSTXQ7MDYR0   ', N'Allsopp                                                                                             ', N'Gigglering                                                                                          ', 8, 3, 0, CAST(N'2017-01-11T19:49:08.203' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4196, N'RGUVVVDCJJ416HWGW   ', N'Gently                                                                                              ', N'Rhoda                                                                                               ', 29, 5, 0, CAST(N'2017-01-11T19:49:17.477' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4197, N'JGOAD35F92YK8789F   ', N'Glitterfluff                                                                                        ', N'Jochim                                                                                              ', 9, 2, 0, CAST(N'2017-01-11T19:49:17.497' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4198, N'JBVD1P5J5MS02EID4   ', N'Badcock                                                                                             ', N'Johanna                                                                                             ', 15, 3, 0, CAST(N'2017-01-11T19:49:17.513' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4199, N'AD9374CIBNRVTVIPB   ', N'Dazzlegaze                                                                                          ', N'Alfred                                                                                              ', 3, 7, 0, CAST(N'2017-01-11T19:49:17.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4200, N'JILREJKHHORSMDI1I   ', N'Ibbott                                                                                              ', N'Jochim                                                                                              ', 52, 5, 0, CAST(N'2017-01-11T19:49:17.557' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4201, N'TSSU25KLD8L8GKT58   ', N'Scavenger                                                                                           ', N'Tasgall                                                                                             ', 12, 6, 0, CAST(N'2017-01-11T19:49:17.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4202, N'QD6K9KSKJ9K492THF   ', N'Donnchadh                                                                                           ', N'Queen                                                                                               ', 35, 5, 0, CAST(N'2017-01-11T19:49:17.593' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4203, N'KS0YQRKO9RFNBR5AW   ', N'Sackville                                                                                           ', N'Kerr                                                                                                ', 6, 1, 0, CAST(N'2017-01-11T19:49:17.613' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4204, N'CGCNW6SNFSEK3A5L4   ', N'Graves                                                                                              ', N'Ceallagh                                                                                            ', 21, 6, 0, CAST(N'2017-01-11T19:49:17.633' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4205, N'OUJQLSSQBD90XHGQT   ', N'Ulalume                                                                                             ', N'Odell                                                                                               ', 58, 2, 0, CAST(N'2017-01-11T19:49:17.650' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4206, N'RQWGR80QHD8VPYG21   ', N'Quickmoon                                                                                           ', N'Rowan                                                                                               ', 64, 3, 0, CAST(N'2017-01-11T19:49:17.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4207, N'QAQU9FRT7W3FRORUI   ', N'Andersen                                                                                            ', N'Quickdance                                                                                          ', 38, 8, 0, CAST(N'2017-01-11T19:49:17.690' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4208, N'AP4JFT0TDX2BK6R6P   ', N'Payton                                                                                              ', N'Anni                                                                                                ', 7, 1, 0, CAST(N'2017-01-11T19:49:17.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4209, N'GJAM4G0W9HVQED3BF   ', N'J rvinen                                                                                            ', N'Gigglering                                                                                          ', 70, 3, 0, CAST(N'2017-01-11T19:49:17.727' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4210, N'DCNCAU8VFIVN7U3MM   ', N'Carbrey                                                                                             ', N'Defensor                                                                                            ', 18, 6, 0, CAST(N'2017-01-11T19:49:17.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4211, N'MBUFYH80B2P312ERB   ', N'Blitzwing                                                                                           ', N'Myrtle                                                                                              ', 30, 3, 0, CAST(N'2017-01-11T19:49:17.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4212, N'DM745VGYH3OYSJE3I   ', N'Moongaze                                                                                            ', N'Dietfried                                                                                           ', 10, 1, 0, CAST(N'2017-01-11T19:49:17.800' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4213, N'HV2IM3838MJIU9PV1   ', N'Venom                                                                                               ', N'Hingle                                                                                              ', 41, 5, 0, CAST(N'2017-01-11T19:49:17.820' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4214, N'MSRW0WN2JOIBF9OJF   ', N'Saraste                                                                                             ', N'Matilda                                                                                             ', 4, 6, 0, CAST(N'2017-01-11T19:49:17.840' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4215, N'DQLBH5F5A7DUHY0CW   ', N'Quickberry                                                                                          ', N'Dirk                                                                                                ', 19, 3, 0, CAST(N'2017-01-11T19:49:17.860' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4216, N'PSY0NJN5G8CQAG0N4   ', N'Smith                                                                                               ', N'Piloqutinnguaq                                                                                      ', 36, 2, 0, CAST(N'2017-01-11T19:49:17.880' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4217, N'PASE5QF86Q7AB6BHL   ', N'Albert                                                                                              ', N'Prisca                                                                                              ', 13, 3, 0, CAST(N'2017-01-11T19:49:17.897' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4218, N'MAISIKV7IS63W5B40   ', N'Amsel                                                                                               ', N'May                                                                                                 ', 42, 3, 0, CAST(N'2017-01-11T19:49:17.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4219, N'RAC70RNB8C0LXUMWI   ', N'Ally                                                                                                ', N'Rollie                                                                                              ', 5, 7, 0, CAST(N'2017-01-11T19:49:17.933' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4220, N'JKPV77VAED0IQCM9P   ', N'Kaisa                                                                                               ', N'Jochim                                                                                              ', 39, 1, 0, CAST(N'2017-01-11T19:49:17.953' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4221, N'WG2LDL4AKDYEJTMKW   ', N'Goold                                                                                               ', N'Webster                                                                                             ', 33, 1, 0, CAST(N'2017-01-11T19:49:17.973' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4222, N'RMW0USVEAWTXKJXDE   ', N'Maoilios                                                                                            ', N'Ruairidh                                                                                            ', 16, 3, 0, CAST(N'2017-01-11T19:49:17.993' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4223, N'AS33IFVH6GNDFQ9I4   ', N'Smith                                                                                               ', N'Aloysius                                                                                            ', 2, 6, 0, CAST(N'2017-01-11T19:49:18.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4224, N'JRGRPT3GCHNA789TB   ', N'Rock                                                                                                ', N'Joyce                                                                                               ', 71, 1, 0, CAST(N'2017-01-11T19:49:18.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4225, N'ABTHV9BGIIM60Q95I   ', N'Bolger-Baggins                                                                                      ', N'Arden                                                                                               ', 17, 8, 0, CAST(N'2017-01-11T19:49:18.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4226, N'DCNVDG3J81HP2GKX0   ', N'Chubb                                                                                               ', N'Daniel                                                                                              ', 40, 1, 0, CAST(N'2017-01-11T19:49:18.067' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4227, N'RHD9QAJIK3FIMFKLE   ', N'Hanley                                                                                              ', N'Rollie                                                                                              ', 11, 5, 0, CAST(N'2017-01-11T19:49:18.087' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4228, N'TGKDEWJLGNAXGMVQ4   ', N'Graves                                                                                              ', N'Tommie                                                                                              ', 20, 4, 0, CAST(N'2017-01-11T19:49:18.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4229, N'CAERV4BP664GIC6JL   ', N'Andersen                                                                                            ', N'Cyra                                                                                                ', 28, 3, 0, CAST(N'2017-01-11T19:49:18.153' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4230, N'BK469XQOI8393B660   ', N'Klowee                                                                                              ', N'Barleyfarmer                                                                                        ', 14, 8, 0, CAST(N'2017-01-11T19:49:18.173' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4231, N'DTXKQ5IS8QXS51H0I   ', N'Topanga                                                                                             ', N'Dirk                                                                                                ', 8, 2, 0, CAST(N'2017-01-11T19:49:18.193' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4232, N'GSX4HCOXRTY0R72RL   ', N'Sulin                                                                                               ', N'Gilchrist                                                                                           ', 29, 6, 0, CAST(N'2017-01-11T19:49:25.657' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4233, N'SOBSORVWXUYVKO23S   ', N'Optimus                                                                                             ', N'Scourge                                                                                             ', 9, 4, 0, CAST(N'2017-01-11T19:49:25.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4234, N'AJ576YN1NDTFMEDWA   ', N'Jeffers                                                                                             ', N'Aleksander                                                                                          ', 15, 1, 0, CAST(N'2017-01-11T19:49:25.703' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4235, N'BSP000V3PYMR83OC7   ', N'Spacespirit                                                                                         ', N'Blair                                                                                               ', 3, 7, 0, CAST(N'2017-01-11T19:49:25.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4236, N'AM2O7E43V0LN1KOOE   ', N'McGently                                                                                            ', N'Applebreeze                                                                                         ', 52, 2, 0, CAST(N'2017-01-11T19:49:25.757' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4237, N'RHV3OLV7LIG73A0HV   ', N'Hawking                                                                                             ', N'Runabout                                                                                            ', 12, 7, 0, CAST(N'2017-01-11T19:49:25.777' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4238, N'MKLH2FC5XKF0N905A   ', N'Kaisa                                                                                               ', N'Marika                                                                                              ', 35, 6, 0, CAST(N'2017-01-11T19:49:25.793' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4239, N'OJGVJM49N3AIPYBXS   ', N'Jeffers                                                                                             ', N'Overkill                                                                                            ', 6, 8, 0, CAST(N'2017-01-11T19:49:25.817' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4240, N'VZSKP2C9T49FHHB90   ', N'Zuleika                                                                                             ', N'Victor                                                                                              ', 21, 4, 0, CAST(N'2017-01-11T19:49:25.837' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4241, N'DO69WHJ8058BAYBK7   ', N'Optimus                                                                                             ', N'Dazzledust                                                                                          ', 58, 4, 0, CAST(N'2017-01-11T19:49:25.857' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4242, N'JGDDK3JBVP3Q46MPV   ', N'Golddust                                                                                            ', N'Joyce                                                                                               ', 64, 7, 0, CAST(N'2017-01-11T19:49:25.873' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4243, N'ESKG8PJES9W7YDXTL   ', N'Snowfeather                                                                                         ', N'Emmi                                                                                                ', 38, 1, 0, CAST(N'2017-01-11T19:49:25.910' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4244, N'QHW5F4REXAV3QUW6S   ', N'Hornblower                                                                                          ', N'Queen                                                                                               ', 7, 8, 0, CAST(N'2017-01-11T19:49:25.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4245, N'DQQJWBJHOSQMSK8YA   ', N'Quickmoon                                                                                           ', N'Daniel                                                                                              ', 70, 3, 0, CAST(N'2017-01-11T19:49:25.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4246, N'GSGXA50G0UPFDJ8LO   ', N'Saraste                                                                                             ', N'Gordon                                                                                              ', 18, 2, 0, CAST(N'2017-01-11T19:49:25.970' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4247, N'MBN1XRYJWEJU7QJQD   ', N'Brandagamba                                                                                         ', N'Maimu                                                                                               ', 30, 5, 0, CAST(N'2017-01-11T19:49:26.007' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4248, N'PSIFFYRNMXED9GUJV   ', N'Sigrid                                                                                              ', N'Pounce                                                                                              ', 10, 7, 0, CAST(N'2017-01-11T19:49:26.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4249, N'HF8TSS7MY0C6TGU7A   ', N'Force                                                                                               ', N'Highbrow                                                                                            ', 41, 7, 0, CAST(N'2017-01-11T19:49:26.050' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4250, N'SCFWGF7PUJ7LON6BY   ', N'Chubb                                                                                               ', N'Scourge                                                                                             ', 4, 4, 0, CAST(N'2017-01-11T19:49:26.083' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4251, N'HDL1517SQ312IUHGO   ', N'Da''ronda                                                                                            ', N'Highbrow                                                                                            ', 19, 1, 0, CAST(N'2017-01-11T19:49:26.113' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4252, N'RRYPBGFSW40XBCHRV   ', N'Rock                                                                                                ', N'Ross                                                                                                ', 36, 3, 0, CAST(N'2017-01-11T19:49:26.133' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4253, N'AQ6SY2FVSOTD5JSWK   ', N'Quickberry                                                                                          ', N'Arcana                                                                                              ', 13, 3, 0, CAST(N'2017-01-11T19:49:26.163' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4254, N'VBII6HMUYPTAX1S8R   ', N'Biceps                                                                                              ', N'Victor                                                                                              ', 42, 4, 0, CAST(N'2017-01-11T19:49:26.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4255, N'RHR6QFACT3RKBPNYK   ', N'Hagstr m                                                                                            ', N'Rollo                                                                                               ', 5, 7, 0, CAST(N'2017-01-11T19:49:26.410' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4256, N'DS5UWTICY4QG48NAR   ', N'Sandheaver                                                                                          ', N'Diamond                                                                                             ', 39, 7, 0, CAST(N'2017-01-11T19:49:26.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4257, N'PJY9E2AGPNL06WY3A   ', N'Jacobson                                                                                            ', N'Peggy-Rae                                                                                           ', 33, 1, 0, CAST(N'2017-01-11T19:49:26.450' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4258, N'DSONRVQE1PKSQWYQO   ', N'Smith                                                                                               ', N'Daniel                                                                                              ', 16, 1, 0, CAST(N'2017-01-11T19:49:26.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4259, N'KII293IIR8FBSMAJ6   ', N'Iomhar                                                                                              ', N'Kermit                                                                                              ', 2, 6, 0, CAST(N'2017-01-11T19:49:26.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4260, N'HAVQFHPIX9E8K4AUD   ', N'Andersen                                                                                            ', N'Hannah                                                                                              ', 71, 2, 0, CAST(N'2017-01-11T19:49:26.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4261, N'KSP5WOILNR9QMTLOU   ', N'Starscream                                                                                          ', N'Kerr                                                                                                ', 17, 6, 0, CAST(N'2017-01-11T19:49:26.533' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4262, N'CGFJAIXK0T8J7SKB9   ', N'Griffin                                                                                             ', N'Corona                                                                                              ', 40, 6, 0, CAST(N'2017-01-11T19:49:26.553' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4263, N'AP9XRPPOPD239IV4R   ', N'Prowl                                                                                               ', N'Amanda                                                                                              ', 11, 2, 0, CAST(N'2017-01-11T19:49:26.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4264, N'AM0C5J6N2E1VTHVR6   ', N'Miles                                                                                               ', N'Arnie                                                                                               ', 20, 1, 0, CAST(N'2017-01-11T19:49:26.593' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4265, N'DGTQMQXRRXVFV77KN   ', N'Goldworthy                                                                                          ', N'Diamond                                                                                             ', 28, 4, 0, CAST(N'2017-01-11T19:49:26.613' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4266, N'HS6FS66QXYUBNP7WU   ', N'Sideswipe                                                                                           ', N'Haidee                                                                                              ', 14, 3, 0, CAST(N'2017-01-11T19:49:26.630' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4267, N'KC1TADXUNHPUPEIPD   ', N'Clarkson                                                                                            ', N'Kateri                                                                                              ', 8, 4, 0, CAST(N'2017-01-11T19:49:26.653' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4268, N'RGMPD81SEDU9S21KA   ', N'Gently                                                                                              ', N'Rein                                                                                                ', 29, 1, 0, CAST(N'2017-01-11T19:49:36.963' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4269, N'DDYXM84GDWG7G4I8V   ', N'Donohoe                                                                                             ', N'Dirk                                                                                                ', 9, 6, 0, CAST(N'2017-01-11T19:49:36.990' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4270, N'CA62AT4J9GAMABTCK   ', N'Albert                                                                                              ', N'Chickenchaser                                                                                       ', 15, 8, 0, CAST(N'2017-01-11T19:49:37.010' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4271, N'MSVFNOJILI8FVBT0Y   ', N'Sherman                                                                                             ', N'Mirjam                                                                                              ', 3, 2, 0, CAST(N'2017-01-11T19:49:37.043' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4272, N'SAQT5VBLB23YW15SH   ', N'Allen                                                                                               ', N'Scotty                                                                                              ', 52, 1, 0, CAST(N'2017-01-11T19:49:37.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4273, N'HA3JCAJLH33VPI55O   ', N'Amsel                                                                                               ', N'Harmony                                                                                             ', 12, 8, 0, CAST(N'2017-01-11T19:49:37.083' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4274, N'JSAM0WJODMWBJPG9D   ', N'Sigrid                                                                                              ', N'Jeremiah                                                                                            ', 35, 6, 0, CAST(N'2017-01-11T19:49:37.103' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4275, N'SKNB6BRNJNV7C7FKK   ', N'Kaisa                                                                                               ', N'Scourge                                                                                             ', 6, 5, 0, CAST(N'2017-01-11T19:49:37.123' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4276, N'HGHPNIJR96QQEWQE3   ', N'Golddust                                                                                            ', N'Harmony                                                                                             ', 21, 8, 0, CAST(N'2017-01-11T19:49:37.143' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4277, N'HSTFUXRRF7PM6EQPA   ', N'Seedfarmer                                                                                          ', N'Hingle                                                                                              ', 58, 8, 0, CAST(N'2017-01-11T19:49:37.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4278, N'EJ1IIJQUBQK21L2TY   ', N'Junge                                                                                               ', N'Emmi                                                                                                ', 64, 1, 0, CAST(N'2017-01-11T19:49:37.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4279, N'AME7PYYTHRJYS3266   ', N'McGently                                                                                            ', N'Anni                                                                                                ', 38, 6, 0, CAST(N'2017-01-11T19:49:37.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4280, N'DSQWVD7SNSIULL2HD   ', N'Slayer                                                                                              ', N'Defensor                                                                                            ', 7, 8, 0, CAST(N'2017-01-11T19:49:37.207' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4281, N'SJX0K07WJDCAFSDL2   ', N'J rvinen                                                                                            ', N'Snowdance                                                                                           ', 70, 8, 0, CAST(N'2017-01-11T19:49:37.230' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4282, N'BF538M70FW7Q90OQR   ', N'Fantine                                                                                             ', N'Butler                                                                                              ', 18, 7, 0, CAST(N'2017-01-11T19:49:37.260' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4283, N'TAISE1FYLX6M2HO2Y   ', N'Anthonyson                                                                                          ', N'Twinkleberry                                                                                        ', 30, 3, 0, CAST(N'2017-01-11T19:49:37.283' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4284, N'SKC7V873BG16470UG   ', N'Kaisa                                                                                               ', N'Silverfrost                                                                                         ', 10, 4, 0, CAST(N'2017-01-11T19:49:37.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4285, N'CL33FVE99LOWK3MG2   ', N'Lothran                                                                                             ', N'C emgein                                                                                            ', 41, 1, 0, CAST(N'2017-01-11T19:49:37.367' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4286, N'SNSGRPU7LNMP53M3G   ', N'Nevin                                                                                               ', N'Sheard                                                                                              ', 4, 7, 0, CAST(N'2017-01-11T19:49:37.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4287, N'HS0KGCUBH7G50AW86   ', N'Stone                                                                                               ', N'Herbie                                                                                              ', 19, 1, 0, CAST(N'2017-01-11T19:49:37.433' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4288, N'AJD9MQ3AN8G2RRWJD   ', N'Junge                                                                                               ', N'Angelica                                                                                            ', 36, 4, 0, CAST(N'2017-01-11T19:49:37.450' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4289, N'PT7N4XUEEQBLTH8CU   ', N'Topanga                                                                                             ', N'Piloqutinnguaq                                                                                      ', 13, 7, 0, CAST(N'2017-01-11T19:49:37.470' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4290, N'GGJCBD2DJRAHLY8O2   ', N'Grubb                                                                                               ', N'Gentlegleam                                                                                         ', 42, 4, 0, CAST(N'2017-01-11T19:49:37.490' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4291, N'MIQGYY2GGC4WG6JSR   ', N'Itzel                                                                                               ', N'Matilda                                                                                             ', 5, 5, 0, CAST(N'2017-01-11T19:49:37.510' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4292, N'TD455EAGMD3T8NJ5Y   ', N'Dazzlegaze                                                                                          ', N'Tiia                                                                                                ', 39, 4, 0, CAST(N'2017-01-11T19:49:37.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4293, N'TSB8T0AJIWX93UU9N   ', N'Sigrid                                                                                              ', N'Titania                                                                                             ', 33, 3, 0, CAST(N'2017-01-11T19:49:37.560' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4294, N'MSNX0FIIOXW5UDUKU   ', N'Starbeam                                                                                            ', N'Myrtle                                                                                              ', 16, 7, 0, CAST(N'2017-01-11T19:49:37.577' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4295, N'WSICHMAMEGROW26DD   ', N'Starbeam                                                                                            ', N'Webster                                                                                             ', 2, 1, 0, CAST(N'2017-01-11T19:49:37.600' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4296, N'OQOF69APA1L4Q9HI2   ', N'Quickleaf                                                                                           ', N'Overkill                                                                                            ', 71, 4, 0, CAST(N'2017-01-11T19:49:37.617' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4297, N'PW24CNIPG2K0JRHT9   ', N'Woods                                                                                               ', N'Pipaluk                                                                                             ', 17, 8, 0, CAST(N'2017-01-11T19:49:37.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4298, N'DKETJ3POM3KWC9H6G   ', N'Kaisa                                                                                               ', N'Dirk                                                                                                ', 40, 6, 0, CAST(N'2017-01-11T19:49:37.653' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4299, N'AP981AHSCLFGDYSYX   ', N'Peacespirit                                                                                         ', N'Assassin                                                                                            ', 11, 6, 0, CAST(N'2017-01-11T19:49:37.673' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4300, N'SKYLD4XROND9YXSLC   ', N'Keith                                                                                               ', N'Silvernose                                                                                          ', 20, 6, 0, CAST(N'2017-01-11T19:49:37.703' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4301, N'TSS0UBPUE68R0N4FU   ', N'Sackville                                                                                           ', N'Tiia                                                                                                ', 28, 1, 0, CAST(N'2017-01-11T19:49:37.727' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4302, N'OHDSPCXXGQ24MCEUQ   ', N'Heyward                                                                                             ', N'Outi                                                                                                ', 14, 4, 0, CAST(N'2017-01-11T19:49:37.760' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4303, N'JFPHWQ6WMR10FUE7X   ', N'Force                                                                                               ', N'Jessamine                                                                                           ', 8, 7, 0, CAST(N'2017-01-11T19:49:37.783' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4304, N'DJDV4F03YQUDEEJ02   ', N'Jeffers                                                                                             ', N'Dirtgreaser                                                                                         ', 29, 8, 0, CAST(N'2017-01-11T19:49:47.853' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4305, N'TFJYS106UAPS9LU5R   ', N'Fairbairn                                                                                           ', N'Titania                                                                                             ', 9, 8, 0, CAST(N'2017-01-11T19:49:47.887' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4306, N'OKAD6UG57CNLTKUR6   ', N'Koenig                                                                                              ', N'Odell                                                                                               ', 15, 1, 0, CAST(N'2017-01-11T19:49:47.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4307, N'BQGGTHG83VH1NR6WU   ', N'Quackenbush                                                                                         ', N'Buffy                                                                                               ', 3, 2, 0, CAST(N'2017-01-11T19:49:47.947' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4308, N'FWNJH3GBYFCHHYH1K   ', N'Wheeljack                                                                                           ', N'Fergus                                                                                              ', 52, 6, 0, CAST(N'2017-01-11T19:49:47.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4309, N'TDUN6PGEV06WC6R69   ', N'Da''ronda                                                                                            ', N'Tommie                                                                                              ', 12, 7, 0, CAST(N'2017-01-11T19:49:48.007' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4310, N'PS8CC5NE115S4ORHG   ', N'Saraste                                                                                             ', N'Potatosower                                                                                         ', 35, 3, 0, CAST(N'2017-01-11T19:49:48.030' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4311, N'SFEF1QNHXKY8YV3L6   ', N'Force                                                                                               ', N'Shaw                                                                                                ', 6, 3, 0, CAST(N'2017-01-11T19:49:48.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4312, N'TABW274J66RGD2EE9   ', N'Alberts                                                                                             ', N'Terje                                                                                               ', 21, 5, 0, CAST(N'2017-01-11T19:49:48.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4313, N'RMI1PS4M2QLV89PIY   ', N'MacClelland                                                                                         ', N'Rhoda                                                                                               ', 58, 4, 0, CAST(N'2017-01-11T19:49:48.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4314, N'HTVPW8BM8RLS0QPT6   ', N'Twinkleeyes                                                                                         ', N'Hingle                                                                                              ', 64, 7, 0, CAST(N'2017-01-11T19:49:48.180' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4315, N'APFIQ9JOACE5MG1A2   ', N'Pocahontas                                                                                          ', N'Aleksandra                                                                                          ', 38, 8, 0, CAST(N'2017-01-11T19:49:48.210' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4316, N'MSMLFVJR6V8KGNCFR   ', N'Smith                                                                                               ', N'May                                                                                                 ', 7, 5, 0, CAST(N'2017-01-11T19:49:48.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4317, N'MSTO3HJU2G30BUNJG   ', N'Sideswipe                                                                                           ', N'Methoataske                                                                                         ', 70, 7, 0, CAST(N'2017-01-11T19:49:48.270' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4318, N'CS1SR4JYX0WF52YO6   ', N'Sparklemoon                                                                                         ', N'Crush                                                                                               ', 18, 6, 0, CAST(N'2017-01-11T19:49:48.347' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4319, N'SLXASJY16LPNK89G9   ', N'Longhole                                                                                            ', N'Sofia                                                                                               ', 30, 1, 0, CAST(N'2017-01-11T19:49:48.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4320, N'PG4DG6Y425J3EGKKX   ', N'Goold                                                                                               ', N'Prisca                                                                                              ', 10, 6, 0, CAST(N'2017-01-11T19:49:48.403' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4321, N'DTBH5SY7XPDI8NVPN   ', N'Twinkleeyes                                                                                         ', N'Double                                                                                              ', 41, 5, 0, CAST(N'2017-01-11T19:49:48.430' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4322, N'DMO6B7764QCF15V1U   ', N'Maoilios                                                                                            ', N'Daisy                                                                                               ', 4, 1, 0, CAST(N'2017-01-11T19:49:48.450' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4323, N'OSV90T7A0A7UUC76J   ', N'Sludge                                                                                              ', N'Outi                                                                                                ', 19, 1, 0, CAST(N'2017-01-11T19:49:48.477' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4324, N'OS2DNF7DWT1APJIA9   ', N'Smith                                                                                               ', N'Outi                                                                                                ', 36, 2, 0, CAST(N'2017-01-11T19:49:48.507' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4325, N'OSF2TUEC2U06H1ILG   ', N'Scourge                                                                                             ', N'Outi                                                                                                ', 13, 4, 0, CAST(N'2017-01-11T19:49:48.537' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4326, N'ZNM5IGEFYFTLB8TQ5   ', N'Nevin                                                                                               ', N'Za re                                                                                               ', 42, 3, 0, CAST(N'2017-01-11T19:49:48.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4327, N'HHCJVAUEAGSEW8TEJ   ', N'Headstrong                                                                                          ', N'Hingle                                                                                              ', 5, 5, 0, CAST(N'2017-01-11T19:49:48.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4328, N'JSJMJWUH71MUQF5I9   ', N'Scavenger                                                                                           ', N'Jellygleam                                                                                          ', 39, 6, 0, CAST(N'2017-01-11T19:49:48.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4329, N'MT3FEX2K9LG6D4FY5   ', N'Tyrrell                                                                                             ', N'Mirjam                                                                                              ', 33, 2, 0, CAST(N'2017-01-11T19:49:48.670' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4330, N'CGAI2K2N55AL7BQ3U   ', N'Glittercloud                                                                                        ', N'Chickenfarmer                                                                                       ', 16, 1, 0, CAST(N'2017-01-11T19:49:48.710' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4331, N'CSTBWLAP7Q3XT02JQ   ', N'Sureshot                                                                                            ', N'Chickenchaser                                                                                       ', 2, 6, 0, CAST(N'2017-01-11T19:49:48.740' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4332, N'AHOPES2TW9XGVPDC9   ', N'Hietamies                                                                                           ', N'Atomic                                                                                              ', 71, 6, 0, CAST(N'2017-01-11T19:49:48.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4333, N'SME4RMIS9BW9GPD0N   ', N'McNaughton                                                                                          ', N'Sally                                                                                               ', 17, 7, 0, CAST(N'2017-01-11T19:49:48.800' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4334, N'SJL7F9IV5UQOAWO5C   ', N'Jacobson                                                                                            ', N'Silverfrost                                                                                         ', 40, 5, 0, CAST(N'2017-01-11T19:49:48.807' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4335, N'ASRA4UHY1FK554091   ', N'Sherman                                                                                             ', N'Alasdair                                                                                            ', 11, 4, 0, CAST(N'2017-01-11T19:49:48.833' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4336, N'FMYERHH3WYFKYBBDQ   ', N'McNaughton                                                                                          ', N'Forest                                                                                              ', 20, 1, 0, CAST(N'2017-01-11T19:49:48.870' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4337, N'MKOR5BX191DDJAB15   ', N'Kreka                                                                                               ', N'Marika                                                                                              ', 28, 3, 0, CAST(N'2017-01-11T19:49:48.897' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4338, N'LGJ6MIP5YJ8VL0MTM   ', N'Grubb                                                                                               ', N'Loviise                                                                                             ', 14, 5, 0, CAST(N'2017-01-11T19:49:48.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4339, N'OM9K0C64BL7O6YLH1   ', N'MacClelland                                                                                         ', N'Oatchaser                                                                                           ', 8, 2, 0, CAST(N'2017-01-11T19:49:48.950' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4340, N'HSGWEGRIGKADWNV1V   ', N'Snowfeather                                                                                         ', N'Hannah                                                                                              ', 29, 3, 0, CAST(N'2017-01-11T19:49:57.547' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4341, N'GASLKU0HML9AO5VD3   ', N'Age                                                                                                 ', N'Grimalda                                                                                            ', 9, 3, 0, CAST(N'2017-01-11T19:49:57.563' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4342, N'MG6BRA8HSM96HNVOA   ', N'Griffin                                                                                             ', N'Marika                                                                                              ', 15, 2, 0, CAST(N'2017-01-11T19:49:57.583' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4343, N'JLDEFW8KO63LBU7T0   ', N'Lashawnda                                                                                           ', N'Jeremiah                                                                                            ', 3, 2, 0, CAST(N'2017-01-11T19:49:57.607' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4344, N'CO7SW40OFPX5DKIMH   ', N'Optimus                                                                                             ', N'Crazy                                                                                               ', 52, 5, 0, CAST(N'2017-01-11T19:49:57.633' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4345, N'DAW7AXFNQRVXXJH9V   ', N'Ally                                                                                                ', N'Diamond                                                                                             ', 12, 7, 0, CAST(N'2017-01-11T19:49:57.657' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4346, N'TCQLR57QHAQG09S2E   ', N'Calfuray                                                                                            ', N'Twinkleleaf                                                                                         ', 35, 5, 0, CAST(N'2017-01-11T19:49:57.677' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4347, N'DLHY5YNPTCP9K8SPS   ', N'Leelo                                                                                               ', N'Donnamira                                                                                           ', 6, 2, 0, CAST(N'2017-01-11T19:49:57.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4348, N'CSN3SKNSPVJOEF4UH   ', N'Sulin                                                                                               ', N'Crazy                                                                                               ', 21, 3, 0, CAST(N'2017-01-11T19:49:57.733' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4349, N'MOU6H7NVLGD49MFY7   ', N'Ogden                                                                                               ', N'Mirjam                                                                                              ', 58, 8, 0, CAST(N'2017-01-11T19:49:57.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4350, N'BL8UNLVVRHD115FAE   ', N'Lashawnda                                                                                           ', N'Barleyfarmer                                                                                        ', 64, 6, 0, CAST(N'2017-01-11T19:49:57.787' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4351, N'DMFYC8VYN17GVCQF3   ', N'McNaughton                                                                                          ', N'Donnamira                                                                                           ', 38, 8, 0, CAST(N'2017-01-11T19:49:57.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4352, N'DWL20UU2JK1VPJ2JS   ', N'Whitfoot                                                                                            ', N'Daisy                                                                                               ', 7, 8, 0, CAST(N'2017-01-11T19:49:57.843' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4353, N'CRYQ6932PL0SH12V0   ', N'Ruairi                                                                                              ', N'Clearkiss                                                                                           ', 70, 1, 0, CAST(N'2017-01-11T19:49:57.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4354, N'SKS6NGU5F4UBJQDOH   ', N'Kristiina                                                                                           ', N'Sacnite                                                                                             ', 18, 7, 0, CAST(N'2017-01-11T19:49:57.893' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4355, N'SKIJ1AB4R6T44PDCV   ', N'Kaisa                                                                                               ', N'Sheard                                                                                              ', 30, 5, 0, CAST(N'2017-01-11T19:49:57.913' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4356, N'DPDXIH38HPON6FO5E   ', N'Proudfoot                                                                                           ', N'Daniel                                                                                              ', 10, 6, 0, CAST(N'2017-01-11T19:49:57.930' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4357, N'AJ3CVBJ7TRMGQFORS   ', N'Jacobson                                                                                            ', N'Atomic                                                                                              ', 41, 3, 0, CAST(N'2017-01-11T19:49:57.957' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4358, N'PPWQDIBBJAHYS4YLA   ', N'Prowl                                                                                               ', N'Powerglide                                                                                          ', 4, 8, 0, CAST(N'2017-01-11T19:49:57.980' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4359, N'DG4T25BEFTCFMBAPY   ', N'Goold                                                                                               ', N'Dina                                                                                                ', 19, 7, 0, CAST(N'2017-01-11T19:49:58.000' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4360, N'SHGJ8KIDLUBBFTA16   ', N'Hagstr m                                                                                            ', N'Spud                                                                                                ', 36, 7, 0, CAST(N'2017-01-11T19:49:58.027' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4361, N'PSNMV6IGHF5Q91L6V   ', N'Spacespirit                                                                                         ', N'Piloqutinnguaq                                                                                      ', 13, 6, 0, CAST(N'2017-01-11T19:49:58.043' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4362, N'ES1B3LQGNG4N2ILH3   ', N'Schuler                                                                                             ', N'Eugene                                                                                              ', 42, 1, 0, CAST(N'2017-01-11T19:49:58.067' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4363, N'CB8FQ7QJJ0Y3VPWMR   ', N'Baphomet                                                                                            ', N'Crush                                                                                               ', 5, 4, 0, CAST(N'2017-01-11T19:49:58.090' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4364, N'KCK4XMYIP1XYO7WXY   ', N'Christmas                                                                                           ', N'Kermit                                                                                              ', 39, 7, 0, CAST(N'2017-01-11T19:49:58.110' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4365, N'MFFIFTQMGJSIQW8QH   ', N'Fraser                                                                                              ', N'Mooncheeks                                                                                          ', 33, 4, 0, CAST(N'2017-01-11T19:49:58.130' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4366, N'ACR7L8YLMKREIE82O   ', N'Cringleberry                                                                                        ', N'Ayelen                                                                                              ', 16, 2, 0, CAST(N'2017-01-11T19:49:58.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4367, N'TGYB9UXPI5LTDLJ7D   ', N'Goold                                                                                               ', N'Tasgall                                                                                             ', 2, 3, 0, CAST(N'2017-01-11T19:49:58.173' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4368, N'HMOOMOENT6KMXLJUR   ', N'Maoilios                                                                                            ', N'Hingle                                                                                              ', 71, 5, 0, CAST(N'2017-01-11T19:49:58.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4369, N'DNI34V6RKPF6YBUNA   ', N'Nita                                                                                                ', N'Dirk                                                                                                ', 17, 3, 0, CAST(N'2017-01-11T19:49:58.220' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4370, N'CGP7SI6UG99LTI6RY   ', N'Grubb                                                                                               ', N'Chickenchaser                                                                                       ', 40, 6, 0, CAST(N'2017-01-11T19:49:58.250' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4371, N'LS3VYWEUMA8IL0646   ', N'Scavenger                                                                                           ', N'Lightspeed                                                                                          ', 11, 7, 0, CAST(N'2017-01-11T19:49:58.267' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4372, N'RWFK6CMTSB8EEH5FD   ', N'Whitfoot                                                                                            ', N'Rowan                                                                                               ', 20, 1, 0, CAST(N'2017-01-11T19:49:58.287' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4373, N'RS6GOYT0QGU6UDR0Y   ', N'Smallburrow                                                                                         ', N'Rein                                                                                                ', 28, 7, 0, CAST(N'2017-01-11T19:49:58.357' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4374, N'CP1U66L4GYPOW33SH   ', N'Philomel                                                                                            ', N'Cyra                                                                                                ', 14, 3, 0, CAST(N'2017-01-11T19:49:58.380' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4375, N'CLDKCLT3M0PLPL35O   ', N'Leavitt                                                                                             ', N'Carbry                                                                                              ', 8, 3, 0, CAST(N'2017-01-11T19:49:58.397' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4376, N'RSABVT4H1MRHCAAE0   ', N'Sugarfeather                                                                                        ', N'Runabout                                                                                            ', 29, 8, 0, CAST(N'2017-01-11T19:50:58.150' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4377, N'JKHFJF4KW7LW7HLIO   ', N'Koenig                                                                                              ', N'Johanna                                                                                             ', 9, 8, 0, CAST(N'2017-01-11T19:50:58.177' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4378, N'AM7SW9JJ99KPRGL63   ', N'MacClelland                                                                                         ', N'Annukka                                                                                             ', 15, 1, 0, CAST(N'2017-01-11T19:50:58.197' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4379, N'RB17EGBNYRF8T6WYL   ', N'Blake                                                                                               ', N'Rhino                                                                                               ', 3, 6, 0, CAST(N'2017-01-11T19:50:58.223' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4380, N'OW8B23BQUB9NND83A   ', N'Woods                                                                                               ', N'Oatchaser                                                                                           ', 52, 8, 0, CAST(N'2017-01-11T19:50:58.243' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4381, N'BSL09HJP1C8KGU8FH   ', N'Siiri                                                                                               ', N'Bob                                                                                                 ', 12, 1, 0, CAST(N'2017-01-11T19:50:58.263' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4382, N'KLXOFWRO7D8G8C8QO   ', N'Lothran                                                                                             ', N'Kateri                                                                                              ', 35, 6, 0, CAST(N'2017-01-11T19:50:58.283' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4383, N'MBS3W4JSWW30A2JJ7   ', N'Blitzwing                                                                                           ', N'Methoataske                                                                                         ', 6, 7, 0, CAST(N'2017-01-11T19:50:58.350' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4384, N'HSJYGRQYU1PRQY54S   ', N'Siiri                                                                                               ', N'Highbrow                                                                                            ', 21, 6, 0, CAST(N'2017-01-11T19:50:58.370' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4385, N'DSVOM6YX12PNJG5GY   ', N'Sackville                                                                                           ', N'Dazzledust                                                                                          ', 58, 2, 0, CAST(N'2017-01-11T19:50:58.390' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4386, N'OK9DSL7X73OKBX5R6   ', N'Koenig                                                                                              ', N'Octane                                                                                              ', 64, 1, 0, CAST(N'2017-01-11T19:50:58.407' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4387, N'GS3RASY2WLJ3DNGKO   ', N'Sparklemoon                                                                                         ', N'Goldstar                                                                                            ', 38, 2, 0, CAST(N'2017-01-11T19:50:58.427' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4388, N'RGGGH7713MI065GWV   ', N'Grubb                                                                                               ', N'Ruairidh                                                                                            ', 7, 5, 0, CAST(N'2017-01-11T19:50:58.443' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4389, N'JPNK5T74Y7CF0CR1K   ', N'Prowl                                                                                               ', N'Jessamine                                                                                           ', 70, 8, 0, CAST(N'2017-01-11T19:50:58.467' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4390, N'FB09C8F458CBSTRCR   ', N'Brown                                                                                               ', N'Fluttersheen                                                                                        ', 18, 6, 0, CAST(N'2017-01-11T19:50:58.487' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4391, N'FSUNTF77UQ7UTJ36A   ', N'Smith                                                                                               ', N'Fergus                                                                                              ', 30, 3, 0, CAST(N'2017-01-11T19:50:58.507' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4392, N'MPK26AM67S5NEJ3SO   ', N'Payton                                                                                              ', N'Maimu                                                                                               ', 10, 7, 0, CAST(N'2017-01-11T19:50:58.527' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4393, N'TREGNHEAWB07G9EL6   ', N'Rippersnapper                                                                                       ', N'Trey                                                                                                ', 41, 5, 0, CAST(N'2017-01-11T19:50:58.543' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4394, N'RP4T1BU99DY018E9K   ', N'Philomel                                                                                            ', N'Rhoda                                                                                               ', 4, 2, 0, CAST(N'2017-01-11T19:50:58.573' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4395, N'ASBXPWUC5XSFVFPEA   ', N'Siiri                                                                                               ', N'Ailpein                                                                                             ', 19, 5, 0, CAST(N'2017-01-11T19:50:58.603' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4396, N'SKI1DJUF2HMUPM1IY   ', N'Kaisa                                                                                               ', N'Sacnite                                                                                             ', 36, 6, 0, CAST(N'2017-01-11T19:50:58.637' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4397, N'HAUPKX3E7IMQI40T6   ', N'Anthonyson                                                                                          ', N'Hingle                                                                                              ', 13, 2, 0, CAST(N'2017-01-11T19:50:58.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4398, N'RS2T8K2I42G6CBBYV   ', N'Sherman                                                                                             ', N'Robert                                                                                              ', 42, 1, 0, CAST(N'2017-01-11T19:50:58.697' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4399, N'AD9WV62L0LAL6IM3K   ', N'Dulcinea                                                                                            ', N'Aloysius                                                                                            ', 5, 1, 0, CAST(N'2017-01-11T19:50:58.717' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4400, N'EKLM3LAK6M9IY1MFR   ', N'Kristiina                                                                                           ', N'Emmi                                                                                                ', 39, 8, 0, CAST(N'2017-01-11T19:50:58.737' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4401, N'BRG1KS2OV6421QX8A   ', N'Rock                                                                                                ', N'Barleyfarmer                                                                                        ', 33, 3, 0, CAST(N'2017-01-11T19:50:58.757' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4402, N'GGSPQ8AN274XS8XJH   ', N'Griffin                                                                                             ', N'Gears                                                                                               ', 16, 8, 0, CAST(N'2017-01-11T19:50:58.780' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4403, N'MC0SFTAQXQXDNF9O6   ', N'Cyra                                                                                                ', N'Maitland                                                                                            ', 2, 1, 0, CAST(N'2017-01-11T19:50:58.800' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4404, N'PSDIL9IQ4RWAFW90D   ', N'Saraste                                                                                             ', N'Pollyanna                                                                                           ', 71, 2, 0, CAST(N'2017-01-11T19:50:58.830' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4405, N'SKKL9UHT0BQPA4K43   ', N'Kaja                                                                                                ', N'Sheard                                                                                              ', 17, 7, 0, CAST(N'2017-01-11T19:50:58.847' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4406, N'DSWAGAPS6CQL2LKGA   ', N'Smith                                                                                               ', N'Daisy                                                                                               ', 40, 1, 0, CAST(N'2017-01-11T19:50:58.863' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4407, N'ENQOXHHWVVL54BV9R   ', N'Nevin                                                                                               ', N'Everild                                                                                             ', 11, 2, 0, CAST(N'2017-01-11T19:50:58.883' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4408, N'WSG3BBXV8XJXOBVW6   ', N'Siiri                                                                                               ', N'Wingspan                                                                                            ', 20, 7, 0, CAST(N'2017-01-11T19:50:58.903' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4409, N'RJBHSIP0XGEGQ07PN   ', N'Jeffers                                                                                             ', N'Robert                                                                                              ', 28, 3, 0, CAST(N'2017-01-11T19:50:58.923' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4410, N'GRN6YXXY4HDDII71U   ', N'Rock                                                                                                ', N'Grapple                                                                                             ', 14, 4, 0, CAST(N'2017-01-11T19:50:58.940' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4411, N'SN1V5C6YAID9B07C2   ', N'Nita                                                                                                ', N'Sean                                                                                                ', 8, 1, 0, CAST(N'2017-01-11T19:50:58.960' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4412, N'LZEL8RBALO2CMJDEK   ', N'Zaragamba                                                                                           ', N'Lavinia                                                                                             ', 29, 1, 0, CAST(N'2017-01-11T19:51:06.487' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4413, N'MLLPWEADH9WRGROI9   ', N'Lashawnda                                                                                           ', N'Methoataske                                                                                         ', 9, 2, 0, CAST(N'2017-01-11T19:51:06.507' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4414, N'CMYE3TICNAVN99OUG   ', N'Maoilios                                                                                            ', N'Chickenfarmer                                                                                       ', 15, 4, 0, CAST(N'2017-01-11T19:51:06.530' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4415, N'PWSSK1AGDSQ7BY0NX   ', N'Wheeljack                                                                                           ', N'Pollyanna                                                                                           ', 3, 3, 0, CAST(N'2017-01-11T19:51:06.550' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4416, N'GHI7XUQFPUO0VX0BC   ', N'Hawking                                                                                             ', N'Gentlegleam                                                                                         ', 52, 7, 0, CAST(N'2017-01-11T19:51:06.570' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4417, N'AICLF2IJFDJJXNB4U   ', N'Ibbott                                                                                              ', N'Alfred                                                                                              ', 12, 4, 0, CAST(N'2017-01-11T19:51:06.590' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4418, N'TKJO3NIMCXEYRUM8J   ', N'Kateri                                                                                              ', N'Terje                                                                                               ', 35, 6, 0, CAST(N'2017-01-11T19:51:06.620' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4419, N'TMWDA3QLHYDUKCMJQ   ', N'McGently                                                                                            ', N'Terje                                                                                               ', 6, 4, 0, CAST(N'2017-01-11T19:51:06.643' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4420, N'AB4HXOQPEI7AEJXOG   ', N'Bunce                                                                                               ', N'Arnie                                                                                               ', 21, 4, 0, CAST(N'2017-01-11T19:51:06.663' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4421, N'ZEG654XOKJ6771X0N   ', N'Error                                                                                               ', N'Za re                                                                                               ', 58, 2, 0, CAST(N'2017-01-11T19:51:06.680' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4422, N'AFTUBI6NPK63YJXCU   ', N'Force                                                                                               ', N'Aleksander                                                                                          ', 64, 1, 0, CAST(N'2017-01-11T19:51:06.700' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4423, N'DC1YY56RM40ISQ9GJ   ', N'Calfuray                                                                                            ', N'Dazzledust                                                                                          ', 38, 3, 0, CAST(N'2017-01-11T19:51:06.727' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4424, N'RCUDGCXUCMU2UGJ92   ', N'Cyra                                                                                                ', N'Ralph                                                                                               ', 7, 7, 0, CAST(N'2017-01-11T19:51:06.747' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4425, N'LD72NR6UINTXNXJL9   ', N'Donnchadh                                                                                           ', N'Loyd                                                                                                ', 70, 5, 0, CAST(N'2017-01-11T19:51:06.770' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4426, N'SCE5BD6XE8NDH5UPX   ', N'Calfuray                                                                                            ', N'Sweetwing                                                                                           ', 18, 7, 0, CAST(N'2017-01-11T19:51:06.790' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4427, N'OGRUISEWK9NAAMU15   ', N'Grubb                                                                                               ', N'Odell                                                                                               ', 30, 5, 0, CAST(N'2017-01-11T19:51:06.810' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4428, N'KPYX6ED0GSHP4T66U   ', N'Privett                                                                                             ', N'Knut                                                                                                ', 10, 5, 0, CAST(N'2017-01-11T19:51:06.850' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4429, N'MSBMCTL0MTGMWB6H2   ', N'Sigrid                                                                                              ', N'Myrtle                                                                                              ', 41, 1, 0, CAST(N'2017-01-11T19:51:06.877' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4430, N'NJIQ1FL3IDA2QIHMQ   ', N'Julitta                                                                                             ', N'Nina                                                                                                ', 4, 7, 0, CAST(N'2017-01-11T19:51:06.897' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4431, N'MKVF7UT2OEAXJ1HXX   ', N'Kateri                                                                                              ', N'Myrtle                                                                                              ', 19, 1, 0, CAST(N'2017-01-11T19:51:06.917' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4432, N'KA2IVHT6KY4DD8S3N   ', N'Andersen                                                                                            ', N'Kermit                                                                                              ', 36, 3, 0, CAST(N'2017-01-11T19:51:06.943' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4433, N'RHF82V25QY3A6PSEU   ', N'Hawking                                                                                             ', N'Ralph                                                                                               ', 13, 3, 0, CAST(N'2017-01-11T19:51:06.967' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4434, N'DQ9MJ3T9GIXS7F47C   ', N'Quickberry                                                                                          ', N'Dazzledust                                                                                          ', 42, 2, 0, CAST(N'2017-01-11T19:51:06.987' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4435, N'CGTFE41BI3R5T4FN9   ', N'Gently                                                                                              ', N'Cyra                                                                                                ', 5, 4, 0, CAST(N'2017-01-11T19:51:07.020' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4436, N'GS64KJ9BO4Q1MLFYF   ', N'Spacespirit                                                                                         ', N'Grimalda                                                                                            ', 39, 8, 0, CAST(N'2017-01-11T19:51:07.043' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4437, N'AP0I2Q1EEMLKOBPRX   ', N'Proudfoot                                                                                           ', N'Arlen                                                                                               ', 33, 6, 0, CAST(N'2017-01-11T19:51:07.063' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4438, N'HMQVFKHDQOKD9BPFC   ', N'Mirjam                                                                                              ', N'Highbrow                                                                                            ', 16, 4, 0, CAST(N'2017-01-11T19:51:07.080' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4439, N'DCKBWR9HG8EWB018T   ', N'Chubb                                                                                               ', N'Dirk                                                                                                ', 2, 1, 0, CAST(N'2017-01-11T19:51:07.100' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4440, N'SGW046HGM9ES3I1J1   ', N'Goldworthy                                                                                          ', N'Sofia                                                                                               ', 71, 2, 0, CAST(N'2017-01-11T19:51:07.120' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4441, N'TSRELE9KDR9C57CDJ   ', N'Sureshot                                                                                            ', N'Tasgall                                                                                             ', 17, 4, 0, CAST(N'2017-01-11T19:51:07.140' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4442, N'KSHSX8PJOT75P7C0X   ', N'Seton                                                                                               ', N'Kadri                                                                                               ', 40, 1, 0, CAST(N'2017-01-11T19:51:07.160' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4443, N'AKB7FFHNFC2NRWNSF   ', N'Kreka                                                                                               ', N'Almira                                                                                              ', 11, 7, 0, CAST(N'2017-01-11T19:51:07.183' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4444, N'DROVMTOMLD1KJEN5M   ', N'Ranald                                                                                              ', N'Donnamira                                                                                           ', 20, 7, 0, CAST(N'2017-01-11T19:51:07.200' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4445, N'PKUYAGOPHXV0ELY9C   ', N'Kaisa                                                                                               ', N'Pollyanna                                                                                           ', 28, 8, 0, CAST(N'2017-01-11T19:51:07.223' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4446, N'AC8OHUWPNYUV63YLJ   ', N'Chubb-Baggins                                                                                       ', N'Atomic                                                                                              ', 14, 8, 0, CAST(N'2017-01-11T19:51:07.240' AS DateTime))
GO
INSERT [dbo].[tEmpl] ([EmplID], [Empl], [LastName], [FirstName], [StoreID], [EmplTitleID], [IsSelfScan], [DateStamp]) VALUES (4447, N'SS23Y2OTDHPF8SAE1   ', N'Sigrid                                                                                              ', N'Sally                                                                                               ', 8, 7, 0, CAST(N'2017-01-11T19:51:07.263' AS DateTime))
GO
SET IDENTITY_INSERT [dbo].[tEmpl] OFF
GO
SET IDENTITY_INSERT [dbo].[tEmplStatus] ON 

GO
INSERT [dbo].[tEmplStatus] ([EmplStatusID], [EmplStatus], [CanWork], [IsEmployed], [IsPermanent]) VALUES (1, N'Active', 1, 1, 0)
GO
INSERT [dbo].[tEmplStatus] ([EmplStatusID], [EmplStatus], [CanWork], [IsEmployed], [IsPermanent]) VALUES (2, N'Terminated', 0, 0, 0)
GO
INSERT [dbo].[tEmplStatus] ([EmplStatusID], [EmplStatus], [CanWork], [IsEmployed], [IsPermanent]) VALUES (3, N'On Leave', 0, 1, 0)
GO
INSERT [dbo].[tEmplStatus] ([EmplStatusID], [EmplStatus], [CanWork], [IsEmployed], [IsPermanent]) VALUES (4, N'Suspended', 0, 1, 0)
GO
INSERT [dbo].[tEmplStatus] ([EmplStatusID], [EmplStatus], [CanWork], [IsEmployed], [IsPermanent]) VALUES (5, N'Vacation', 0, 1, 0)
GO
INSERT [dbo].[tEmplStatus] ([EmplStatusID], [EmplStatus], [CanWork], [IsEmployed], [IsPermanent]) VALUES (6, N'Banned', 0, 0, 1)
GO
SET IDENTITY_INSERT [dbo].[tEmplStatus] OFF
GO
SET IDENTITY_INSERT [dbo].[tEmplTitle] ON 

GO
INSERT [dbo].[tEmplTitle] ([EmplTitleID], [EmplTitle], [IsStoreManager], [IsSelfScan]) VALUES (1, N'Department Manager  ', 0, 0)
GO
INSERT [dbo].[tEmplTitle] ([EmplTitleID], [EmplTitle], [IsStoreManager], [IsSelfScan]) VALUES (2, N'Associate           ', 0, 0)
GO
INSERT [dbo].[tEmplTitle] ([EmplTitleID], [EmplTitle], [IsStoreManager], [IsSelfScan]) VALUES (3, N'Store Manager       ', 1, 0)
GO
INSERT [dbo].[tEmplTitle] ([EmplTitleID], [EmplTitle], [IsStoreManager], [IsSelfScan]) VALUES (4, N'Maintenance         ', 0, 0)
GO
INSERT [dbo].[tEmplTitle] ([EmplTitleID], [EmplTitle], [IsStoreManager], [IsSelfScan]) VALUES (5, N'Cart Wrangler       ', 0, 0)
GO
INSERT [dbo].[tEmplTitle] ([EmplTitleID], [EmplTitle], [IsStoreManager], [IsSelfScan]) VALUES (6, N'Loss Prevention     ', 0, 0)
GO
INSERT [dbo].[tEmplTitle] ([EmplTitleID], [EmplTitle], [IsStoreManager], [IsSelfScan]) VALUES (7, N'District Manager    ', 1, 0)
GO
INSERT [dbo].[tEmplTitle] ([EmplTitleID], [EmplTitle], [IsStoreManager], [IsSelfScan]) VALUES (8, N'Self Scan           ', 0, 1)
GO
SET IDENTITY_INSERT [dbo].[tEmplTitle] OFF
GO
SET IDENTITY_INSERT [dbo].[tIngredient] ON 

GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63240, N'Cupcake                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63241, N'Filtered Water                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63242, N'Natural Flavors                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63243, N'Citric Acid                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63244, N'Sodium Hexametaphosphate                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63245, N'Phosphoric Acid                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63246, N'Sodium Benzoate (Preserves Freshness)                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63247, N'Sodium Citrate                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63248, N'Sucralose (Splenda Brand)                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63249, N'Calcium Disodium Edta (to Protect Flavor)                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63259, N'Carbonated Water                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63260, N'High Fructose Corn Syrup                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63264, N'Guarana Seed Extract (Paullina Capula)                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63265, N'D-Ribose                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63266, N'Caffeine                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63267, N'Maltodextrin                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63268, N'Gum Arabic                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63269, N'Yellow 5                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63270, N'Ascorbic Acid (to protect flavor)                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63272, N'Taurine                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63273, N'Panax Ginseng Extract                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63274, N'Brominated Vegetable Oil                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63275, N'Blue 1                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63277, N'Caramel Color                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63278, N'Natural & Artificial Flavors                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63280, N'Aspartame                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63281, N'Potassium Benzoate (preserves freshness)                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63283, N'Potassium Citrate                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63285, N'Acesulfame Potassium                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63311, N'Natural Flavor                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63319, N'Panax Ginseng Root Extract                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63321, N'Red 40                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63338, N'Sugar                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63341, N'Citric Acid and Natural Flavors                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63348, N'Citric Acid Natural Flavor                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63350, N'High Fructose Corn Syrup and or Sugar                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63351, N'Orange Juice from Concentrate                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63352, N'Natural and Artificial Flavor                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63357, N'Yellow 6                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63358, N'Erythorbic Acid (preserves freshness)                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63359, N'Calcium Disodium Brominated vegetable Oil                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63361, N'Sorbitol                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63362, N'Gum Base                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63363, N'Mannitol                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63364, N'Artificial and Natural Flavoring                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63365, N'Glycerin                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63368, N'BHT (to maintain freshness)                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63371, N'Soy Lecithin                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63372, N'Sucralose and Titanium Dioxide (color)                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63375, N'Xylitol                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63377, N'Natural and Artificial Flavoring                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63382, N'Yellow 5 Lake                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63383, N'Blue 1 Lake and BHT (to maintain freshness)                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63386, N'Maltitol                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63390, N'Acacia                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63392, N'Acetylated Monoglycerides                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63395, N'Candelilla Wax                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63396, N'Cottonseed Oil                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63397, N'Red 40 Lake                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63399, N'Titanium Dioxide (color)                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63400, N'Yellow 5 Lake in Sweet Strawberry                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63434, N'Soy Lecithin and Sucralose                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63444, N'Calcium Casein Peptone-Calcium Phosphate (Lactose-Free Milk derivative)                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63448, N'Sodium Stearate and Titanium Dioxide                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63458, N'Calcium Casein Peptone-Calcium Phosphate (Lactose free Milk derivative)                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63461, N'Sodium Stearate                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63494, N'Sucralose                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63505, N'Blue 1 Lake                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63508, N'Titanium Dioxide (Color) and Yellow 5 Lake)                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63509, N'Milk                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63510, N'Vitamin D3                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63511, N'Lowfat Milk                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63512, N'Vitamin A Palmitate and Vitamin D3                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63515, N'Reduced Fat Milk                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63518, N'Cream                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63519, N'Sodium Citrate and Disodium Phosphate                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63520, N'Cultured Skim Milk                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63523, N'Salt                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63524, N'Grade A Whey                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63525, N'Artificial Color                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63526, N'Guar Gum                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63527, N'Potassium Sorbate (Preservative)                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63530, N'Corn Starch                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63531, N'Locust Bean Gum                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63532, N'Carrageenan                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63533, N'Sodium Phosphate                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63534, N'Potassium Phosphate                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63535, N'Vitamin A Palmitate                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63536, N'Enzymes                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63554, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate Vitamin B1, Riboflavin Vitamin B2, Folic Acid]                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63555, N'Cheddar Cheese [Pasteurized Cultured Milk, Salt, Enzymes, Annatto]                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63556, N'Vegetable Oils (Sunflower, Canola, and/or Soybean)                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63558, N'Yeast                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63560, N'Spices                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63561, N'Autolyzed Yeast                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63562, N'Leavening (Monocalcium Phosphate, Ammonium Bicarbonate, Baking Soda)                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63563, N'Onion Powder                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63576, N'Vegetable Oils (Canola, Sunflower, and/or Soybean)                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63590, N'Yeast Extract                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63591, N'Blue 2                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63594, N'Red 3                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63595, N'Leavening (Baking Soda, Monocalcium Phosphate, Ammonium Bicarbonate)                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63596, N'Annatto (Color)                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63615, N'Vegetable Oils (Canola, Sunflower and / or Soybean)                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63616, N'Parmesan Cheese (Pasteurized Milk, Cheese Culture, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63618, N'Leavening (Ammonium Bicarbonate, Baking Soda, Monocalcium Phosphate)                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63625, N'Vegetable Oils (Sunflower, Canola and/or Soybean)                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63635, N'Cheddar Cheese [Pasteurized Milk, Cheese Culture, Salt, Enzymes, Water, Salt]                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63637, N'Cheese Powder [Cheddar Cheese Milk, Salt, Cheese Cultures, Enzymes, Whey, Buttermilk, Disodium Phosphate]                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63640, N'Whey                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63641, N'Yellow Corn Flour                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63644, N'Leavening (Baking Soda, Ammonium Bicarbonate, Monocalcium Phosphate)                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63648, N'Natural Butter Flavor                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63650, N'Garlic Powder                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63651, N'Extractives of Paprika (Color)                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63652, N'Lactic Acid and Spice Extract                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63655, N'Tomato Paste                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63661, N'Onion Powder and Extractives of Paprika (Color)                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63707, N'Annatto (Color) and Onion Powder                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63708, N'Whole Wheat Flour                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63709, N'Water                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63711, N'Wheat Gluten                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63713, N'Soybean Oil                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63715, N'Datem (Dough Conditioner)                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63716, N'Wheat Protein Isolate                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63717, N'Nonfat Milk                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63718, N'Calcium Propionate (to retard spoilage)                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63719, N'Monoglyceride                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63721, N'Organic Blue Corn                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63722, N'Expeller Pressed Canola Oil and/or Safflower and/or Sunflower Oil                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63723, N'Sea Salt                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63724, N'Organic Yellow Corn                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63726, N'Organic Black Bean Flakes                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63731, N'Organic White Corn                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63732, N'Expeller Pressed Canola and/or Safflower and/or Sunflower Oil                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63735, N'Cane Juice Powder                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63736, N'Dehydrated Green Bell Pepper                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63739, N'Sweet Whey                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63740, N'Lime Juice Powder (Lime Juice Solids, Maltodextrin)                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63742, N'Buttermilk                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63744, N'Expeller Pressed Avocado Oil                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63746, N'Lemon Juice Powder (Lemon Juice Concentrate, Maltodextrin)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63747, N'Whole Grain Oats (includes the Oat Bran)                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63748, N'Modified Corn Starch                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63751, N'Tripotassium Phosphate                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63752, N'Oat Fiber                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63753, N'Wheat Starch                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63754, N'Vitamin E (Mixed Tocopherols) added to preserve freshness                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63755, N'Calcium Carbonate                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63756, N'Iron and Zinc (Mineral Nutrients)                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63757, N'Vitamin C (Sodium Ascorbate)                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63758, N'A B Vitamin (Niacinamide)                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63759, N'Vitamin B6 (Pyridoxine Hydrochloride)                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63760, N'Vitamin B2 (Riboflavin)                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63761, N'Vitamin B1 (Thiamin Mononitrate)                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63762, N'Vitamin A (Palmitate)                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63763, N'A B Vitamin (Folic Acid)                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63764, N'Vitamin B12                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63765, N'Vitamin D                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63766, N'Enriched Pasta (Semolina, Durum Flour, Niacin, Ferrous Sulfate, Thiamin Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63769, N'Enriched Flour (Wheat Flour, Niacin, Iron, Thiamin Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63772, N'Hydrolyzed Vegetable Protein (Corn, Soy, Wheat)                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63773, N'MSG                                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63775, N'Tomato                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63776, N'Onion                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63778, N'Partially Hydrogenated Soybean Oil                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63779, N'Mono and Diglycerides                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63780, N'Lactic Acid                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63782, N'Garlic                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63784, N'Calcium Lactate                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63787, N'Parsley Flakes                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63788, N'Tapioca Maltodextrin                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63789, N'Mushroom Powder                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63790, N'Autolyzed Yeast Extract                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63792, N'Beef Stock                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63793, N'Butter                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63794, N'Disodium Inosinate                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63795, N'Disodium Guanylate                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63796, N'Egg. * Dried                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63804, N'Vitamin E (mixed Tocopherols)                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63805, N'added to preserve freshness. Calcium Carbonate                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63816, N'Whole Grain Corn                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63817, N'Whole Grain Oats                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63819, N'Whole Grain Barley                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63820, N'Whole Grain Rice                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63821, N'Whole Grain Wheat                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63823, N'Brown Sugar Syrup                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63824, N'Corn Bran                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63826, N'Trisodium Phosphate                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63827, N'Canola and/or Rice Bran Oil                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63828, N'Distilled Monoglycerides                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63829, N'Color added                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63830, N'Vitamin E (mixed Tocopherols) added to preserve freshness. Calcium Carbonate                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63831, N'Zinc and Iron (Mineral Nutrients)                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63832, N'Vitamin E (Tocopheryl Acetate)                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63835, N'a B Vitamin (Calcium Pantothenate)                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63862, N'Enriched Pasta (Wheat Flour, Niacin, Iron, Thiamin Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63868, N'Hydrolyzed Protein (Corn, Soy, Wheat, Yeast)                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63870, N'Corn Syrup                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63871, N'Sour Cream (Cream, Nonfat Milk, Cultures)                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63874, N'Whey Protein Concentrate                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63878, N'Dextrose                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63881, N'Sodium Caseinate                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63884, N'Parsley                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63886, N'Beef Fat                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63887, N'Sodium Alginate                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63890, N'Disodium Phosphate                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63893, N'Butter (Sweet Cream)                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63894, N'Egg. *Dried                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63895, N'Enriched Parboiled Rice (Rice, Iron, Niacin, Thiamin Mononitrate, Folic Acid)                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63896, N'Limed Corn Flour                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63899, N'Partially Hydrogenated Vegetable Oil (Soybean, Canola and/or Cottonseed)                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63903, N'Chili Pepper                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63906, N'Tomato Flakes                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63907, N'Ricotta Cheese (Whey, Milkfat, Lactic Acid, Salt)                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63910, N'Cheddar Cheese (Milk, Cheese Cultures, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63912, N'Blue Cheese (Milk, Cheese Cultures, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63914, N'Colored with Yellow Lakes 5 & 6                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63915, N'Soy Flour                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63921, N'Oat Bran                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63964, N'Vitamin D. Vitamin E (Mixed Tocopherols) added to preserve freshness                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63965, N'Pasteurized Orange Juice                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63966, N'Tricalcium Citrate (Calcium source)                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63974, N'Beef                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63977, N'less than 2% Salt                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63978, N'Corn Syrup Solids                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63979, N'Dried Soy Sauce (Soybeans, Salt, Wheat)                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63980, N'Hydrolyzed Corn and Soy Protein                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63983, N'Flavorings                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63984, N'Sodium Erythorbate                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (63985, N'Sodium Nitrite                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64016, N'Fructose                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64019, N'Hydrolyzed Corn Protein                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64021, N'Paprika Extract                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64026, N'Soy Sauce (Water, Wheat, Soybeans, Salt)                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64029, N'MSG. Hydrolyzed Corn Gluten                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64030, N'Paprika                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64038, N'Black Pepper                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64043, N'Hydrolyzed Corn  Protein                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64049, N'Brown Sugar                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64051, N'Vinegar                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64052, N'less than 2% KC Masterpiece Barbecue Sauce [High Fructose Corn Syrup, Tomato Puree Tomato Paste, Molasses, less than 2% Spices, Natural Hickory Smoke Flavor, Natural Flavors, Vinegar, Modified Food Starch, Salt, Xanthan Gum, Sodium Benzoate as a Preservative, Dried Onion, Dried Garlic, Caramel Color]                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64056, N'Dried Tomato                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64061, N'Sodium Tripolyphosphate                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64070, N'less than 2% Natural Smoke Flavor                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64099, N'less than 2% Molasses Powder (Molasses, Maltodextrin)                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64100, N'A.1. Steak Sauce Powder [Tomato Powder, Salt, Corn Syrup Solids, Vinegar Powder Maltodextrin, Vinegar, Raisin Juice Concentrate, Refinery Syrup Powder, Spice, Maltodextrin, Molasses Powder, Citric Acid, Orange Juice Concentrate, Caramel Color, Garlic Powder, Tannic Acid, Onion Powder, Sugar, Garlic, Natural Flavor, Tamarind]                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64102, N'Hydrolyzed Soy Protein                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64105, N'Worcestershire Sauce Powder (Maltodextrin, Distilled Vinegar, Molasses, Corn Syrup, Salt, Caramel Color, Garlic Powder, Sugar, Spices, Tamarind, Natural Flavor, Sulfiting Agents)                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64107, N'Natural Grill Flavor (Maltodextrin, Flavor Modified Corn Starch, Corn Syrup Solids)                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64109, N'Sodium Diacetate                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64110, N'Orange Juice Powder (Corn Syrup Solids, Orange Juice Solids, Natural Flavors, Citric Acid)                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64124, N'Spice Extract                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64126, N'Ham                                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64130, N'less than 2% Maltodextrin                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64131, N'Natural Maple Flavor (Maltodextrin, Natural Flavors, Dextrose, Molasses, Sugar, Caramel Color)                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64133, N'Maple Syrup                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64135, N'Molasses                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64139, N'Cooked Chicken Breast Strips with Rib Meat (Chicken Breast Meat with Rib Meat, Water, Modified Food Starch, Salt, Seasoning White Pepper, Black Pepper, Garlic Powder, Celery Powder)                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64140, N'Broccoli                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64142, N'Water Chestnuts                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64143, N'Red Bell Peppers                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64144, N'Yellow Bell Peppers                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64145, N'Roasted Peanuts                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64146, N'Hoisin Sauce (Sugar, Water, Sweet Potatoes, Salt, Modified Food Starch, Soybeans, Spice, Sesame Seeds, Wheat Flour, Garlic, Chili Peppers, Acetic Acid)                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64147, N'Soy Sauce (Water, Wheat, Soybeans, Salt, Lactic Acid)                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64148, N'Oyster Flavored Sauce (Water, Sugar, Salt, Oyster Extract, Modified Food Starch, Caramel Color)                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64149, N'Sherry Wine                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64150, N'Sesame Oil                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64151, N'Chicken Stock                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64152, N'Dried Garlic                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64155, N'Chili Pepper Puree (Vinegar, Dried Arbol Chili Peppers, Dried Pequin Chili Peppers)                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64156, N'Rice Vinegar                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64157, N'Modified Food Starch                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64158, N'Dried Onions                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64159, N'Toasted Sesame Seeds                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64162, N'Xanthan Gum                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64163, N'Toasted Sesame Oil                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64164, N'Flavor                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64165, N'Cauliflower                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64166, N'Fully Cooked Seasoned Roasted Beef Steak Strips and Modified Food Starch Product - Caramel Color added (Beef, Water,  Concentrated Beef Stock, Modified Food Starch, Potassium Chloride, Salt, Dextrose, Sodium Phosphates, Caramel Color, Potassium Phosphates, Spice Extractives)                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64167, N'Sugar Snap Peas                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64169, N'Fire Roasted Yellow Bell Pepper                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64170, N'Fire Roasted Red Bell Pepper                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64171, N'Rice Wine (Water, Rice, Dextrose, Corn Syrup Solids, Salt)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64173, N'Green Onions                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64177, N'Beef Base (Roasted Beef including Natural Beef Juices, Salt, Hydrolyzed Vegetable Protein Corn, Soy, Wheat Gluten, Sugar, Natural Flavorings, Caramel Color, Potato Flour, Disodium Guanylate, Disodium Inosinate, Tocopherol)                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64178, N'Sesame Seeds                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64179, N'Ginger Puree (Ginger, Water, Citric Acid)                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64182, N'Chili Pepper Puree (Vinegar, Dried Arbol  Chili Peppers, Dried Pequin Chili Peppers)                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64183, N'Flavor Citric Acid                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64189, N'Cooked Pasta (Water, Whole Wheat Flour, Modified Wheat Starch, Wheat Gluten, Wheat Protein Isolate,  Monoglycerides, Soybean Oil, Modified Food Starch, Xanthan Gum, Enzymes)                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64190, N'Roasted Red Bell Pepper                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64191, N'Yellow Carrots                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64192, N'Extra Virgin Olive Oil                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64194, N'Parmesan Cheese (Pasteurized Part-Skim Milk, Cheese Culture, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64195, N'Basil                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64198, N'Roasted Garlic Puree (Roasted Crushed Garlic, Olive Oil)                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64205, N'Buttermilk Solids                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64206, N'Dried Parsley                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64207, N'Spice                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64209, N'Sodium Phosphates                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64212, N'Cultured Pasteurized Grade A Skim Milk                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64213, N'Milk and Cream                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64217, N'Calcium Phosphate                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64222, N'Cheddar Cheese (Pasteurized Milk, Cheese Culture, Salt, Enzymes, Annatto Color)                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64223, N'Potato Starch                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64224, N'Cellulose Powder                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64225, N'Calcium Sulfate added to prevent caking                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64226, N'Natamycin (a natural Mold Inhibitor)                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64232, N'Cheddar and Monterey Jack Cheeses (Pasteurized Milk, Cheese Culture, Salt, Enzymes, Annatto Color)                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64244, N'Eggs                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64245, N'Egg Yolks                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64246, N'Mustard Flour                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64248, N'Potassium Sorbate as a Preservative                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64301, N'Carbonated Water (Water, Carbon Dioxide)                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64306, N'Sodium Benzoate (as preservative) and Red 40                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64310, N'Natural and Artificial Flavors                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64316, N'Artificial Flavor                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64317, N'Sodium Benzoate (as preservative)                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64318, N'Yellow 5 and Yellow 6                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64331, N'Red 40 and Yellow 6                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64341, N'Sodium Benzoate (as preservative) and Artificial Colors (FD and C Yellow and Red 40)                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64346, N'Sodium Benzoate (as preservative) and Artificial Colors (FD and C Red 40)                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64352, N'FD and C Red 40                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64358, N'Sodium Benzoate (as preservative) and Artificial Colors                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64359, N'FD and C Yellow 5 and Blue 1                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64372, N'Artificial Colors (FD & C Yellow 5 and Yellow 6)                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64383, N'Yellow 6 and Red 40                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64402, N'Yellow 5 and Blue 1                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64412, N'Tartaric Acid                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64413, N'Sodium Benzoate (a Preservative)                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64416, N'Gum Acacia                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64424, N'Ester Gum                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64425, N'Brominated Soybean Oil                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64428, N'BHA (to protect flavor)                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64437, N'Worcestershire Sauce Maltodextrin, Distilled Vinegar, Molasses, Corn Syrup, Salt, Caramel Color, Garlic Powder, Sugar, Spices, Tamarind, Natural Flavor, Soy Sauce Water, Salt, Hydrolyzed Soy Protein, Corn Syrup, Caramel Color, Potassium Sorbate, Genuine Jim Beam Bourbon, Sodium Erythorbate, Sodium Nitrite                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64443, N'BBQ Seasoning [Fructose, Salt, Chili Powder Chili Pepper, Spices, Salt, Dehydrated Garlic,  Dehydrated Onion, Dehydrated Garlic, Spices, Spice Extractives, Natural Smoke Flavor Maltodextrin, Yeast Extract, Dextrose]                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64444, N'Genuine Jim Beam Bourbon                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64445, N'Seasonings (High Fructose Corn Syrup and/or Sucrose, Water, Caramel Color, Phosphoric Acid, Natural Flavors)                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64450, N'White Pepper                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64453, N'Prepared Dry Beans                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64464, N'Glucuronolactone                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64466, N'Acesulfame K                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64468, N'Inositol                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64470, N'Niacinamide                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64471, N'Calcium Pantothenate                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64472, N'Pyridoxine HCL                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64475, N'Colors                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64477, N'Sucrose                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64478, N'Glucose                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64509, N'Sodium Citrates                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64510, N'Magnesium Carbonate                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64521, N'Inverted Cane Sugar                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64524, N'Sodium Benzoate and Potassium Sorbate (as Preservatives)                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64533, N'Enriched Bleached Wheat Flour (Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64535, N'Leavening (Baking Soda, Dicalcium Phosphate, Sodium Aluminum Phosphate, Monocalcium Phosphate)                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64537, N'Propylene Glycol Mono- and Diesters of Fats                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64540, N'Polyglycerol Esters of Fatty Acids                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64541, N'Cellulose Gum                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64542, N'Mono- and Diglycerides                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64543, N'Artificial Flavors                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64545, N'Colored with (Yellow 5 Lake, Red 40 Lake)                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64548, N'Vegetable Oil Shortening (Partially Hydrogenated Soybean Oil, Propylene Glycol Mono- and Diesters of Fats, Mono- and Diglycerides)                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64549, N'Cocoa Powder processed with Alkali                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64551, N'Leavening (Sodium Bicarbonate, Dicalcium Phosphate, Sodium Aluminum Phosphate, Monocalcium Phosphate).  Modified Food Starch                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64562, N'Vegetable Oil Shortening (Partially Hydrogenated Soybean Oil, Propylene Glycol Mono- and Diesters of Fats, Mono- and Diglycerides) Leavening (Sodium Bicarbonate, Dicalcium Phosphate, Sodium Aluminum Phosphate, Monocalcium Phosphate)                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64564, N'Spices (Cinnamon, Allspice, Coriander, Ginger, Nutmeg)                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64568, N'Colored with (Caramel Color, Yellow 5 Lake)                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64571, N'Modified Cornstarch                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64574, N'Dextrin                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64577, N'Triethyl Citrate                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64578, N'Acetic Acid                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64581, N'Fudge Marble Packet (Sugar, Cocoa Powder processed with Alkali, Bleached Wheat Flour, Leavening Sodium Bicarbonate, Monocalcium Phosphate)                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64583, N'Leavening (Sodium Bicarbonate, Dicalcium Phosphate, Sodium Aluminum Phosphate, Monocalcium Phosphate).  Wheat Starch                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64597, N'Leavening (Sodium Bicarbonate, Dicalcium Phosphate, Sodium Aluminum Phosphate, Monocalcium Phosphate)                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64609, N'Colored with (Yellow 5 Lake )                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64615, N'Leavening (Sodium Bicarbonate, Monocalcium Phosphate Monohydrate, Sodium Aluminum Phosphate)                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64616, N'Cornstarch                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64624, N'Vegetable Oil Shortening (Partially Hydrogenated Soybean and Cottonseed Oils, Propylene Glycol Mono- and Diesters of Fats, Mono- and Diglycerides, Polyglycerol Esters of Fatty Acids, Soy Lecithin)                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64625, N'Artificial Strawberry Flavored Pieces (Sugar, Corn Syrup, Corn Cereal, Modified Food Starch Corn and/or Wheat, Partially Hydrogenated Vegetable Oil Cottonseed and/or Soybean, Citric Acid, Artificial Flavor, Confectioner''s Glaze, colored with Red 40 and Blue 2)                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64628, N'Emulsifier (Propylene Glycol Mono- and Diesters of Fats and Fatty Acids, Mono- and Diglycerides, Soy Lecithin, Citric Acid to protect flavor)                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64638, N'Tapioca Dextrin                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64640, N'Artificial Strawberry Flavor                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64641, N'colored with (Red 40 Lake)                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64643, N'Nonfat Dry Milk                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64647, N'Leavening (Sodium Bicarbonate, Sodium Aluminum Phosphate, Dicalcium Phosphate, Monocalcium Phosphate)                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64654, N'Butter Acids and Esters [Milk]                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64657, N'Milk Chocolate [Sugar, Cocoa Butter, Whole Milk, Chocolate Liquor, Lactose, Soy Lecithin an Emulsifier and Vanillin an Artificial Flavor]                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64658, N'Chocolate Chip Cookie Dough [Wheat Flour, Sugar, Partially Hydrogenated Vegetable Oil includes Soybean and Cottonseed Oil, Brown Sugar, Chocolate Morsels Sugar, Chocolate Liquor, Cocoa Butter, Soy Lecithin an Emulsifier, Glycerine, Natural Flavors, Salt, Sodium Bicarbonate]                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64659, N'Resinous Confectioner''s Glaze (Shellac)                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64663, N'Peanut Traces                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64669, N'Granulated Garlic                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64670, N'Chile Powder                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64671, N'Cayenne Pepper                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64672, N'Soy Sauce (Wheat, Soybean Oil, Salt, Maltodextrin)                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64675, N'Tomatoes (Vine Ripened Fresh Pear Tomatoes, Salt, Citric Acid)                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64676, N'First Cold Press Extra Virgin Olive Oil                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64678, N'Natural Spices                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64683, N'Parmesan Cheese                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64684, N'Cabernet Sauvignon Wine (Sulfites)                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64692, N'Anchovy Paste from Fresh Pacific Anchovies (Malto-Dextrin, Anchovy Extract, Salt)                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64693, N'Capers                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64694, N'Onions                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64698, N'Pesto (Parmesan Cheese, Basil, Garlic, Pine Nuts)                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64699, N'First Press Extra Virgin Olive Oil                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64706, N'Roasted Red Peppers                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64707, N'Roasted Green Peppers                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64708, N'Roasted Yellow Peppers                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64716, N'Mushrooms                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64717, N'Black Olives                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64719, N'Artichoke Hearts                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64723, N'Peanut Oil with TBHQ and Citric Acid added as Preservatives and Dimethylpolysiloxane added as an anti-foaming agent                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64724, N'Roasted Green Chiles                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64725, N'Peeled Tomatoes                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64728, N'Soy Oil                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64731, N'Calcium Chloride                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64751, N'Tomatoes (Peeled Tomatoes with Juice, Calcium Chloride, Citric Acid)                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64752, N'Roasted Anaheim Green Chiles                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64753, N'Jalapeno Peppers                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64756, N'Tomato Puree (Water, Tomato Paste)                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64757, N'Diced Tomatoes                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64763, N'Olive Oil                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64764, N'Sunflower Oil                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64768, N'Oregano                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64770, N'Grade A Large Eggs                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64771, N'Grade A Eggs                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64772, N'Grade A Brown Eggs                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64773, N'Grade A Extra Large Eggs                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64777, N'Grape Juice Concentrate (Color)                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64779, N'Pectin                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64781, N'Fruit Extract (Color)                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64782, N'Ascorbic Acid (Vitamin C)                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64784, N'Gingko Bilboa                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64785, N'Leaf Extract                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64786, N'Guarana (Paullinia Cupana) Seed Extract                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64789, N'Skim Milk                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64795, N'Cochineal (Color)                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64799, N'Aloe Barbadendsis Leaf Extract                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64800, N'Strawberry Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64801, N'Niacin                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64803, N'Alpha-Tocopheryl Acetate                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64804, N'Glycerol Ester of Wood Rosin                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64805, N'Pyridoxine Hydrochloride                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64806, N'Retinol Palmitate                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64807, N'Cyanocobalamin                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64810, N'Grape Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64811, N'Orange Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64813, N'Cherry Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64814, N'Natural Flavor (Contains Milk, Soy)                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64817, N'Carmine (Color)                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64822, N'Elderberry Juice (Color)                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64829, N'Carrot Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64830, N'Lemon Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64832, N'Calcium Lactate Pentahydrate                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64835, N'L-Carnitine                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64840, N'Carob Bean Gum                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64841, N'Beta-Carotene (Color)                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64842, N'Chromium Picolinate                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64848, N'Green Tea Solids                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64850, N'Echinacea Purpurea Flower Extract                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64853, N'Ginkgo Bilboa Leaf Extract                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64857, N'Aronia Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64866, N'L-Proline                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64880, N'Zinc Methionine Sulfate                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64882, N'Premium Popped Corn                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64883, N'Pure Corn Oil                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64884, N'Maltodextrin (IP)                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64887, N'Roasted Chipotle Pepper Powder                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64892, N'Silicon Dioxide to prevent caking                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64898, N'Romano Cheese                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64900, N'Dill Weed                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64901, N'California Basil                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64902, N'Minced Green Onion                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64903, N'Chives                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64904, N'Tarragon                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64905, N'Chervil                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64907, N'Ground White Pepper                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64911, N'Cheddar Cheese (Milk, Salt, Cheese Cultures, Enzymes, Whey, Buttermilk, Salt, Disodium Phosphate)                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64912, N'Romano Cheese (Cow''s Milk, Salt, Cheese Cultures, Enzymes)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64913, N'Gouda Cheese (Milk, Salt, Cheese Cultures, Enzymes, Whey, Disodium Phosphate, Lactic Acid)                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64916, N'Hickory Smoke Powder (Maltodextrin, Natural Hickory Smoke Flavor, Silicon Dioxide to prevent caking)                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64922, N'Parmesan Cheese (Pasteurized Milk, Cultures, Salt and Enzymes)                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64924, N'Whey Powder                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64925, N'Non-Fat Dry Milk                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64927, N'Tomato Powder                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64932, N'Paprika Extractives                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64937, N'Cheddar Cheese (Pasteurized Milk, Cultures, Salt and Enzymes)                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64947, N'Parmesan Cheese (Milk, Salt, Cheese Cultures, Enzymes, Whey, Disodium Phosphate, Lactic Acid)                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64948, N'Natural Asiago Cheese Flavor                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64950, N'Cheddar Cheese (Cultured Milk, Salt, Enzymes, Whey, Buttermilk, Maltodextrin, Disodium Phosphate)                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (64956, N'Mozzarella Cheese (Pasteurized Part Skim Milk, Cheese Cultures, Salt, Enzymes, Whey, Sodium Phosphate, Lactic Acid)                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65013, N'Wheat Flour                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65016, N'Malic Acid                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65018, N'Glyceryl Monostearate                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65019, N'Glycerine                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65021, N'Color added (including Red 40)                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65027, N'Orange Juice from Concentrate from Florida                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65034, N'Natural Spring Water                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65035, N'Enriched Wheat Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65036, N'Vegetable Oil (Contains one or more of  Canola, Cottonseed, Palm) Preserved by TBHQ                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65037, N'Dehydrated Vegetables (Corn, Carrot, Green Peas, Onion, Garlic, Celery Stalk)                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65039, N'Powdered Cooked Chicken                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65040, N'Chicken Fat                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65042, N'Hydrolyzed Corn                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65043, N'Wheat and Soy Protein                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65044, N'Lactose                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65046, N'Dehydrated Soy Sauce (Wheat, Soybeans, Salt, Maltodextrin)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65049, N'Chicken Broth                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65050, N'Soya Lecithin                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65051, N'Potassium Carbonate                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65053, N'Sodium Carbonate                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65054, N'Turmeric                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65059, N'Dehydrated Vegetables (Corn, Carrot, Onion, Garlic, Chive)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65061, N'Textured Soy Protein                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65066, N'Beef Extract                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65141, N'Silicon Dioxide (anti-caking agent)                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65149, N'Ramen Noodles: Enriched Wheat Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65150, N'Vegetable Oil (Contains one or more of  Canola, Cottonseed, Palm) preserved TBHQ                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65156, N'Turmeric. Soup Base: MSG                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65159, N'Dehydrated Vegetables (Onion, Garlic, Chive)                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65164, N'Cabbage Extract                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65175, N'Turmeric. Soup Base: Salt                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65186, N'Partially Hydrogenated Vegetable Oil (Cottonseed, Soybean)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65194, N'Sodium (Mono, Hexameta, and/or Tripoly) Phosphate                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65204, N'Natural and Artificial Shrimp and Lobster Flavor                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65218, N'Turmeric. Soup Base: Hydrogenated Soybean Oil                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65220, N'Food Starch Modified                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65223, N'Dehydrated Vegetables (Onion, Garlic, Parsley)                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65235, N'Corn                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65238, N'Whole Grain Rolled Oats                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65239, N'Almonds                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65241, N'High Oleic Vegetable Oil (Canola or Sunflower Oil)                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65242, N'Rice Flour                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65245, N'Rice                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65246, N'Malted Barley Flour                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65249, N'Whey (from Milk)                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65250, N'Honey                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65251, N'Malted Corn and Barley Syrup                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65252, N'Cinnamon                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65256, N'Annatto Extract (Color)                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65257, N'BHT added to packaging material to preserve product freshness                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65258, N'Reduced Iron                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65260, N'Vitamin B6                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65262, N'Riboflavin (Vitamin B2)                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65263, N'Thiamin Mononitrate (Vitamin B1)                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65264, N'Zinc Oxide (source of Zinc)                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65265, N'Folic Acid                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65306, N'Vegetable Oil (Canola or Sunflower Oil)                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65333, N'Sodium Lactate                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65337, N'Sodium Ascorbate                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65346, N'Sodium Erythorbate (made from Sugar)                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65349, N'Cooked Pinto Beans                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65353, N'Partially Hydrogenated Lard with BHA and BHT added to protect flavor                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65376, N'Potassium Benzoate (to protect taste)                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65402, N'Maltodextrin (Glucose Polymers)                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65412, N'Coconut Oil                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65414, N'Niacinamide (Vitamin B3)                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65415, N'Pyridoxine Hydrochloride (Vitamin B6)                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65416, N'Cyanocobalamin (Vitamin B12)                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65418, N'High Fructose Corn Syrup and/or Sucrose                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65422, N'Sodium Benzoate (to protect taste)                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65448, N'Sodium Benzoate (to protect the taste)                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65456, N'Monosodium Phosphate                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65520, N'Ascorbic Acid (to protect paste)                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65557, N'Ginseng Extract                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65559, N'Vegetable Juice (for color)                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65562, N'Carnitine Fumarate                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65565, N'Guarana Extract                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65604, N'Magnesium Sulfate                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65607, N'Potassium Sorbate and Potassium Benzoate (to protect taste)                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65612, N'Zinc Gluconate                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65620, N'Partially Hydrogenated Soybean and/or Cottonseed Oil                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65621, N'Sodium Caseinate (a Milk Derivative)*                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65623, N'Dipotassium Phosphate                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65625, N'Sodium Stearoyl Lactylate                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65627, N'Polysorbate 60                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65629, N'Beta-Carotene Color. ** Not a source of lactose                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65633, N'Sodium Caseinate (a Milk derivative)                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65640, N'Beta-Carotene Color                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65680, N'Corn Oil                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65682, N'Enriched Corn Meal (Corn Meal, Ferrous Sulfate, Niacin, Thiamin Mononitrate, Riboflavin, and Folic Acid)                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65683, N'Vegetable Oil (Contains one or more of  Corn, Soybean or Sunflower Oil)                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65690, N'Sour Cream (Cultured Cream, Nonfat Milk)                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65694, N'Artificial Colors (including Yellow 6)                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65696, N'Potatoes                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65700, N'Vegetable Oil (Contains one or more of  Corn, Cottonseed, or Sunflower Oil)                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65709, N'Dextrose Monohydrate                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65712, N'Sour Cream (Cultured Cream, Nonfat Dry Milk)                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65719, N'Artificial Color (including Blue 1, Blue 2, Yellow 6, Yellow 5, Red 40)                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65720, N'Whole Corn                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65721, N'Vegetable Oil (Contains one or more of  Corn, Soybean, or Sunflower Oil)                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65725, N'Cheddar Cheese (Cultured Milk, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65728, N'Corn Flour                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65730, N'American Cheese (Cultured Milk, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65733, N'Spices (including Black Pepper)                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65736, N'Swiss Cheese (Cultured Milk, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65737, N'Colby Cheese (Cultured Milk, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65738, N'Monterey Jack Cheese (Cultured Milk, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65742, N'Artificial Colors (including Yellow 6, Yellow 5, Yellow 6 Lake, Red 40, Blue 1 Lake, Yellow 5 Lake, Blue 1)                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65745, N'Butter (Cream, Salt)                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65747, N'Jalapeno Pepper                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65755, N'Partially Hydrogenated Soybean and Cottonseed Oil                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65763, N'Blue Cheese (Cultured Milk, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65766, N'Artificial Color (including Yellow 6 Lake, Yellow 6)                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65776, N'Whole Wheat                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65778, N'Whole Oat Flour                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65782, N'Dry Buttermilk                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65788, N'Cultured Whey                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65791, N'Mozzarella Cheese (Pasteurized Part Skim Milk, Cheese Cultures, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65795, N'Glycerol                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65798, N'Artificial Color (including Red 40, Blue 1)                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65803, N'Vegetable Oil (Corn, Cottonseed, and/or Sunflower Oil)                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65804, N'Nonfat Milk Solids                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65812, N'Palm Oil                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65816, N'Whey Protein Isolate                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65830, N'Natural Hickory Smoke Flavor                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65839, N'Sodium Nitrite. Contains Beef from one or more of the following sources: Australia                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65840, N'Brazil                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65841, N'New Zealand                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65842, N'the United States                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65843, N'Cashews                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65844, N'Peanut and/or Cottonseed Oil                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65846, N'Peanuts                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65850, N'MSG (Flavor Enhancer)                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65851, N'Dried Yeast                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65852, N'Gelatin                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65855, N'Onion and Garlic Powders                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65866, N'Milk Chocolate (Sugar, Milk, Cocoa Butter, Chocolate, Soy Lecithin, and Vanillin - Artificial Flavor)                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65869, N'Coconut                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65870, N'Vegetable Oil (Palm, Shea, Sunflower and/or Safflower Oil)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65872, N'Chocolate                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65873, N'Whey (Milk,)                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65875, N'Partially Hydrogenated Vegetable Oil (Soybean and Palm Oil)                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65876, N'Milk Fat                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65878, N'Cocoa                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65881, N'Hydrolyzed Milk Protein                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65882, N'Sodium Metabisulfite and Sulfur Dioxide - to maintain freshness                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65884, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Lactose, Milk Fat, Soy Lecithin and PGPR - Emulsifiers, and Vanillin - Artificial Flavor)                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65886, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Lactose, Milk Fat, Soy Lecithin,  Vanillin - Artificial Flavor, PGPR - Emulsifier)                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65887, N'Milk Chocolate (Sugar, Milk, Cocoa Butter, Chocolate, Cocoa processed with Alkali, Nonfat Milk, Milk Fat, Soy Lecithin and PGPR - Emulsifiers, and Vanillin - Artificial Flavor) and Oil of Peppermint                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65888, N'Milk Chocolate (Sugar, Cocoa Butter, Chocolate, Milk, Nonfat Milk, Soy Lecithin, PGPR - Emulsifier, and Vanillin - Artificial Flavor)                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65894, N'Dairy Butter (Milk)                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65895, N'Milk Fat (Milk)                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65898, N'Sodium Bicarbonate                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65899, N'Vanillin - Artificial Flavor                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65902, N'Refined Palm Kernel Oil                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65903, N'Cocoa Butter                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65904, N'Whey (Milk)                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65913, N'Milk Chocolate (Sugar, Milk, Cocoa Butter, Chocolate, Lactose, Nonfat Milk, Soy Lecithin, Milk Fat, PGPR - Emulsifier, Vanillin - Artificial Flavor)                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65915, N'Vegetable Oil (Palm Kernel, Canola, and Palm Oil)                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65921, N'PGPR - Emulsifier                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65922, N'Artificial Color (Red 40 Lake)                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65923, N'Semi-Sweet Chocolate (Sugar, Chocolate, Cocoa Butter, Milk Fat, Soy Lecithin, Vanillin - Artificial Flavor, Milk)                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65930, N'Oil of Peppermint Soy Lecithin                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65932, N'Artificial Color (Yellow 5 Lake, Blue 1 Lake)                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65933, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Lactose, Milk Fat, Soy Lecithin, Vanillin - Artificial Flavor, PGPR - Emulsifier)                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65936, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Lactose Milk, Milk Fat, Soy Lecithin and PGPR - Emulsifiers, Vanillin - Artificial Flavor)                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65937, N'Sweet Chocolate (Sugar, Chocolate, Cocoa Butter, Cocoa processed with Alkali, Milk Fat, Lactose, Soy Lecithin, PGPR - Emulsifier, Vanillin - Artificial Flavor, Milk)                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65938, N'Milk Chocolate Sugar, Milk, Cocoa Butter, Chocolate, Soy Lecithin, and Vanillin - Artificial Flavor, and Almonds                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65939, N'Milk Chocolate (Sugar, Cocoa Butter, Chocolate, Nonfat Milk, Lactose, Milk, Milk Fat, Soy Lecithin and PGPR - Emulsifiers, and Vanillin - Artificial Flavor)                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65944, N'Cocoa processed with Alkali                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65946, N'Lactose (Milk)                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65948, N'PGPR (Emulsifier)                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65951, N'Milk Chocolate (Sugar, Milk, Cocoa Butter, Chocolate, Nonfat Milk, Soy Lecithin and PGPR - Emulsifiers, Vanillin - Artificial Flavor)                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65952, N'Almonds (Roasted in Cocoa Butter and/or Sunflower Oil)                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65954, N'Dairy Butter                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65963, N'Soy Lecithin / PGPR -Emulsifier                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65970, N'Vegetable Oil (Cocoa Butter, Palm, Shea, Sunflower and or Safflower Oil)                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65975, N'Crisp Rice                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65981, N'PGPR-Emulsifier                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65983, N'Malt                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (65990, N'Crisped Rice                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66000, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Milk Fat, Soy Lecithin, PGPR - Emulsifier, Vanillin - Artificial Flavor)                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66004, N'Partially Hydrogenated Vegetable Oil (Palm Kernel and Palm Oil)                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66008, N'TBHQ - a Preservative                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66009, N'Semi-Sweet Chocolate (Chocolate, Sugar, Cocoa, Milk Fat, Cocoa Butter, Organic Soy Lecithin, Natural Vanilla Flavor, Milk)                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66011, N'Vegetable Oil (Cocoa Butter, Palm Shea, Sunflower and/or Safflower Oil)                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66014, N'Enriched Wheat Flour (Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, and Folic Acid)                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66016, N'Partially Hydrogenated Vegetable Oil (Soybean and/or Cottonseed Oil)                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66025, N'Tocopherols to maintain freshness                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66026, N'PGPR Emulsifier                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66028, N'Cultured Grade A Reduced Fat Milk                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66030, N'Natural Vanilla Flavor                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66032, N'Cultured Grade A Non Fat Milk                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66034, N'Nonfat Yogurt [Cultured Grade A Non Fat Milk, Modified Corn Starch, Kosher Gelatin, Vitamin A Palmitate, Vitamin D3]                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66035, N'Fructose Syrup                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66036, N'Peaches                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66040, N'Annatto Extract (For Color)                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66041, N'Potassium Sorbate (to maintain freshness)                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66045, N'Strawberries                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66047, N'Banana Puree                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66057, N'Blueberries                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66060, N'Elderberry Juice Concentrate (for color)                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66066, N'Raspberry Puree                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66096, N'Strawberry                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66103, N'Kosher Gelatin                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66105, N'Carmine (for Color)                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66110, N'Peach                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66118, N'Annatto Extract and Carrot Juice Concentrate (for Color)                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66134, N'Inulin                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66183, N'Raisins                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66184, N'Wheat Bran                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66188, N'Malt Flavoring                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66191, N'Zinc Oxide                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66194, N'Thiamin Hydrochloride (Vitamin B1)                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66197, N'Vitamin B12 and Vitamin D                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66198, N'Milled Corn                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66203, N'Baking Soda                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66205, N'Iron                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66207, N'Turmeric Color                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66215, N'Organic Whole Wheat                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66216, N'Organic Sugar Coated Raisins (Organic Raisins, Organic Sugar)                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66217, N'Organic Wheat Bran                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66218, N'Organic Evaporated Cane Juice Crystals                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66219, N'Organic Evaporated Cane Juice Syrup                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66221, N'Organic Malt Extract                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66236, N'Sodium Ascorbate and Ascorbic Acid (Vitamin C)                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66244, N'BHT (Preservative)                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66246, N'Prepared White Beans                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66251, N'Bacon                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66254, N'Mustard (Water, Vinegar, Mustard Seed, Salt, Turmeric, Spices)                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66257, N'Extractives of Paprika                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66310, N'Extractive of Paprika                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66313, N'Prepared Great Northern Beans                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66320, N'Pork                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66324, N'Mustard Powder                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66338, N'Smoked Pork Flavor (Natural Flavors, Bacon Fat, Natural Smoke Flavor, Autolyzed Yeast Extract)                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66339, N'Hickory Flavor (Natural Flavors and Corn Syrup Solids)                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66343, N'Mustard (Vinegar, Water, Mustard Seed, Salt, Natural Flavor)                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66344, N'Maple Cured Bacon                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66346, N'Pure Maple Syrup                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66352, N'Bacon Fat                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66354, N'Natural Smoke Flavor                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66377, N'Natural Pork Flavor (Pork Stock, Maltodextrin, Pork Flavor, Dextrose)                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66389, N'Buffered Lactic Acid                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66390, N'Pear Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66404, N'Artificial Colors                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66407, N'Confectionery Glaze                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66408, N'Carnauba Wax                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66409, N'Beeswax                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66410, N'Diced Tomatoes (Tomatoes, Tomato Juice, Calcium Chloride, Citric Acid)                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66413, N'Roasted Garlic                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66416, N'Dehydrated Garlic                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66420, N'White Mushrooms                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66421, N'Portobello Mushrooms                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66422, N'Crimini Mushrooms                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66426, N'Natural Onion Flavor (Partially Hydrogenated Soybean Oil, Butter Oil, Onion Powder, Natural Flavor, Salt)                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66428, N'Dehydrated Onion                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66430, N'Imported Pecorino Romano Cheese (Sheep''s Milk, Rennet, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66434, N'Ascorbic Acid                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66436, N'Split Peas                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66437, N'Celery.  Bacon (Pork cured with Water, Salt, Sugar, Sodium Phosphate, Sodium Erythorbate, Sodium Nitrite)                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66439, N'Sweet Peas                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66447, N'Clam Broth                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66449, N'Clams                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66452, N'Celery                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66453, N'Modified Food Corn Starch.  Onions                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66455, N'Soy Protein Concentrate                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66461, N'Datem                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66462, N'Lobster Powder                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66463, N'Shrimp                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66466, N'Crab Powder                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66471, N'Fish Powder                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66472, N'Tuna Extract                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66480, N'Green Beans                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66481, N'Tomatoes                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66482, N'Carrots                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66485, N'Enriched Pasta (Semolina Wheat, Egg White, Niacin, Ferrous Sulfate, Thiamin Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66487, N'Chicory Root Extract                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66491, N'Potassium Chloride                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66503, N'Cooked White Chicken Meat                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66505, N'Wild Rice                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66507, N'Celery.  Modified Food Starch                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66513, N'Carrot Puree                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66518, N'Soy Protein Isolate                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66523, N'Beta Carotene (Color)                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66525, N'Alpha Tocopherol (Preservative)                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66547, N'Color added (including Blue 1, Blue 1 Lake, Yellow 5, Yellow 5 Lake)                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66585, N'Dehydrated Potatoes                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66587, N'Pasteurized Process American Style Cheese Product and American Cheese (Skim Milk Cheese, Reduced Fat Cheddar Cheese and American Cheeses Skim Milk, Milk, Cheese Culture, Salt, Enzymes, Color added, Vitamin A Palmitate, Water, Whey, Skim Milk, Whey Protein Concentrate, Sodium Phosphate, Salt)                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66588, N'Bacon Bits (Bacon cured with Water, Salt, Sugar, Hickory Smoke Flavoring)                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66589, N'Powdered Cellulose                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66591, N'Color added including Oleoresin Paprika                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66594, N'Potassium Lactate                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66597, N'Disodium Inosinate and Disodium Guanylate                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66600, N'Dehydrated Chives                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66605, N'Turkey Breast Medallions with Binders                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66606, N'Caramel Color added: Turkey Breast                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66609, N'Isolated Soy Protein                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66610, N'Chicken Broth (Maltodextrin, Chicken Broth, Salt, Flavors)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66621, N'Roasted Sweet Potatoes                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66624, N'Oatmeal Topping: Rolled Oats                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66626, N'High Fructose Corn Syrup Sugar                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66632, N'Cranberry Juice from Concentrate                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66633, N'Cranberries                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66634, N'Margarine (Liquid and Partially Hydrogenated Soybean Oil, Water, Salt, Vegetable Mono- and Diglycerides, Soy Lecithin, Sodium Benzoate, Citric Acid and Calcium Disodium EDTA Preservatives, Artificially Flavored, colored with Beta Carotene, Vitamin A Palmitate added)                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66637, N'Nonfat Dry Milk (Nonfat Dry Milk, Vitamin A Palmitate and Vitamin D3)                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66641, N'Sweet Dairy Whey                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66642, N'Sweet Cream Powder (Cream, Nonfat Milk Solids, Sodium Caseinate, Sodium Aluminosilicate)                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66643, N'Caramelized Sugar (Maltodextrin, Natural Flavoring, Modified Corn Starch, Caramel Color Contains Egg)                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66644, N'Vanilla Flavor (Water, Ethyl Alcohol, Corn Syrup, Polysorbate 80 and Caramel Color)                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66645, N'Artificial Butter Caramel Flavor (Propylene Glycol, Natural Flavors, Artificial Flavors)                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66650, N'Sodium Acid Pyrophosphate                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66653, N'Flavors                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66656, N'Tempura Chicken Breast: Chicken Breast Meat                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66662, N'predusted with: Enriched Wheat Flour (Enriched with Niacin, Ferrous Sulfate, Thiamine Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66665, N'Natural Flavor. Battered with: Water                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66666, N'Bleached Wheat Flour                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66668, N'Leavening (Sodium Bicarbonate, Sodium Aluminum Phosphate)                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66670, N'Egg                                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66671, N'Guar Gum. Fully cooked in Canola Oil. Cooked Rice                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66674, N'Peaches (may contain Citric and/or Malic and/or Ascorbic and/or Erythorbic Acids)                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66675, N'Green and Red Peppers                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66677, N'Pineapple Tidbits and Juice                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66680, N'Oatmeal Topping (Rolled Oats, Sugar, High Fructose Corn Syrup, Sugar, Soybean Oil, Honey, Brown Sugar, Molasses)                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66684, N'Soy Sauce (Water, Wheat, Soybeans, Salt, Alcohol, Vinegar, Lactic Acid)                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66687, N'Whiskey with Salt                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66694, N'Oleoresin Paprika                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66696, N'Beet Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66697, N'Mesquite Flavored Glazed White Meat Chicken: White Meat Chicken                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66699, N'Mesquite Seasoning Blend (Dextrose, Modified Food Starch, Maltodextrin, Salt, Paprika, Lemon Peel, Spice, Sugar, Garlic, Citric Acid, Corn Starch, Xanthan Gum, Onion, Smoke Flavor Maltodextrin, Smoke Flavor, Grill Flavor Maltodextrin, Partially Hydrogenated Cottonseed and Soybean Oil, Modified Food Starch, Corn Syrup Solids, Smoke Flavor Partially Hydrogenated Soybean Oil, Smoke Flavor, Lemon Oil)')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66703, N'Chicken Flavor (Yeast Extract, Maltodextrin, Chicken Flavor Contains Xanthan Gum, Disodium Inosinate, Disodium Guanylate, Salt, Chicken Fat, Citric Acid, Natural Flavor)                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66706, N'Flavoring                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66708, N'Roasted Potatoes                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66710, N'Apples                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66720, N'Molasses. Modified Corn Starch                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66721, N'Sugarcane Molasses                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66723, N'BBQ Seasoning (Salt, Dehydrated Onion, Spices, Dehydrated Garlic, Polysorbate 80 and Natural Smoke Flavor)                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66734, N'Chipotle Pepper Concentrate: Red Chile Peppers                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66735, N'Chipotle Peppers                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66736, N'Salt and Flavoring (Natural Smoke Flavorings). Xanthan Gum                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66741, N'Vegetable Oil                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66746, N'Hydrolyzed Yeast Protein                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66747, N'Enzyme Modified Cheddar Cheese (Cheddar Cheese Milk, Cheese Culture, Salt, Enzymes, Water, Disodium Phosphate)                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66753, N'Hydrolyzed Wheat Gluten                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66755, N'Diced Tomatoes in Tomato Juice                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66758, N'Vegetable Oil (Corn and/or Cottonseed and/or Canola)                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66762, N'Spices (Basil, Oregano, Spice)                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66766, N'Dehydrated Parsley                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66769, N'Vegetable Oil (Corn, Cottonseed, Canola, and/or Soybean)                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66772, N'Cream (Milk)                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66774, N'Dried Whey (Milk)                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66782, N'Clam Meat                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66787, N'Vegetable Oil (Corn, Cottonseed, Canola and/or Soybean)                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66792, N'Bleached Enriched Flour (Wheat Flour, Niacin, Ferrous Sulfate, Thiamine Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66793, N'Butter (Milk)                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66801, N'Clam Extract Powder (Clam Meat, Salt, Sugar, Soy Sauce Soybeans, Wheat, Salt)                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (66802, N'Succinic Acid                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67485, N'Enriched Flour (Wheat Flour, Niacin, Reduced Iron, Thiamin Mononitrate Vitamin B1, Riboflavin Vitamin B2, Folic Acid)                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67486, N'Vegetable Oil (Canola, Cottonseed, Palm, Sunflower and/or Partially Hydrogenated Soybean Oil with TBHQ for freshness)                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67487, N'Cheddar Cheese (Milk, Cheese Cultures, Salt, Enzymes, Annatto Color)                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67489, N'Contains two percent or less of Sour Cream (Cultured Cream, Nonfat Dry Milk)                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67492, N'Leavening (Baking Soda, Yeast)                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67496, N'Annatto Extract Color                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67497, N'Turmeric Oleoresin for Color                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67498, N'Paprika Oleoresin Color                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67501, N'Onion Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67506, N'Vinegar Solids                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67510, N'Artificial Colors (Yellow #6, Red #40 Lake, Yellow #6 Lake, Blue #1 Lake)                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67513, N'Vegetable Oil (Canola, Cottonseed, Palm, Sunflower and/or Partially Hydrogenated Soybean Oil with TBHQ added for freshness)                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67514, N'Skim Milk Cheese (Skim Milk, Whey Protein, Cheese Cultures, Salt, Enzymes, Annatto Extract for color)                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67515, N'Contains two percent or less of Milk                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67519, N'Paprika Oleoresin for color                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67520, N'Cheese Cultures                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67534, N'Vegetable Oil (Cottonseed, Palm, Sunflower and/or Partially Hydrogenated Soybean Oil with TBHQ added for freshness)                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67535, N'Skim Milk Cheese (Skim Milk, Whey Protein, Cheese Cultures, Salt, Enzymes, Annatto Extract Color)                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67539, N'Paprika Oleoresin (color)                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67541, N'Vegetable Oil (Canola, Cottonseed, Sunflower and/or Partially Hydrogenated Soybean with TBHQ added for freshness)                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67543, N'White Cheddar Cheese (Milk, Cheese Cultures, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67545, N'Contains two percent or less of Paprika                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67549, N'Red Pepper                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67550, N'Yellow #5                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67551, N'Celery Seed                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67552, N'Annatto Color                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67554, N'Yellow #6                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67565, N'Romano Cheese (Part-Skim Cow''s Milk, Cheese Cultures, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67570, N'Artificial Color (including Yellow 6 Lake, Yellow 5 Lake, Yellow 6, Red 40 Lake)                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67575, N'Parmesan Cheese (Part-Skim Milk, Cheese Cultures, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67587, N'Paprika and Paprika Extractives                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67589, N'Soy                                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67590, N'Wheat Proteins                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67601, N'Dehydrated Onions                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67602, N'Smoke Flavoring                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67617, N'Hydrolyzed Soy and Corn Protein                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67629, N'Pepper                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67630, N'Seasoning [Torula Yeast, Maltodextrin, Grill Flavor From Vegetable Oil, Modified Food Starch, Corn Syrup Solids, and Tricalcium Phosphate]                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67639, N'Chili Powder (Chili Pepper, Spices, Salt, Garlic Powder)                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67640, N'Soy Sauce Powder (Wheat, Soybeans, Salt, Spices, Maltodextrin)                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67656, N'Teriyaki Sauce (Soy Sauce Water, Soybeans, Wheat, Salt, Sugar, Sake Water, Glucose, Sweet Rice Extract, Salt, Lactic Acid, Succinic Acid, Water, Natural Flavorings)                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67659, N'Teriyaki Seasoning (Soy Sauce Powder Soy Sauce Wheat, Soybeans, Salt, Maltodextrin, Salt, Flavor Maltodextrin, Flavor, Sulfur Dioxide, Brown Sugar, Spices, Onion, Garlic)                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67664, N'Hydrolyzed Beef Stock                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67670, N'Natural Smoke Flavoring                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67700, N'White Wine                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67704, N'Hickory Smoke Flavoring                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67785, N'KC Masterpiece Barbecue Sauce [High Fructose Corn Syrup, Tomato Puree Tomato Paste, Molasses,  Spices, Natural Hickory Smoke Flavor, Natural Flavors, Vinegar, Modified Food Starch, Salt, Xanthan Gum, Sodium Benzoate as a Preservative, Dried Onion, Dried Garlic, Caramel Color]                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67832, N'Molasses Powder (Molasses, Maltodextrin)                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67916, N'Margarine (Soybean Oil, Water, Salt, Partially Hydrogenated Soybean Oil, Mono- and Diglycerides, Soy Lecithin, Sodium Benzoate, Natural Flavor, Artificial Flavor, Beta Carotene Color, Vitamin A Palmitate)                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67917, N'Diced Tomatoes (Tomatoes, Tomato Juice, Salt, Calcium Chloride, Citric Acid)                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67919, N'Corn Maltodextrin                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67921, N'Cream Powder (Cream, Soy Lecithin)                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67922, N'Beef Au Jus Concentrate (Beef Stock, Flavor, Soy Sauce Water, Wheat, Soybeans, Salt, Sodium Benzoate, Beef Fat, Caramel Color, Cultured Whey Milk, Cornstarch, Onion Powder, Sugar, Garlic Powder, Salt, Modified Cornstarch, Potato Starch, Beet Powder, Lactic Acid, Corn Syrup Solids)                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67924, N'Beef Type Flavor (Hydrolyzed Corn Gluten, Soy Protein and Wheat Gluten, Autolyzed Yeast Extract, Dextrose, Partially Hydrogenated Cottonseed and Soybean Oils)                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67926, N'Roasted Garlic Puree (Garlic, High Maltose Corn Syrup Solids)                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67931, N'Red Bell Pepper                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67932, N'Roasted Red Pepper Paste (Roasted Red Bell Peppers, Dextrose, Water, Salt, Yeast Extract, Potato Starch, Natural Flavoring, Soy Sauce Water, Soybeans, Wheat, Salt)                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67933, N'Worcestershire Sauce (Distilled Vinegar, Molasses, Corn Syrup, Water, Salt, Caramel Color, Garlic Powder, Sugar, Spices, Anchovies, Tamarind, Natural Flavor, Sulfites added as Preservatives)                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67936, N'Pepper (White, Black)                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67937, N'Emulsifier (Mono- and Diglycerides, Nonfat Milk, Wheat Starch)                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67941, N'Spice Extractives                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67942, N'Concentrated Onion Juice (Onion Juice, Sunflower Oil)                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67943, N'Cooked Enriched Macaroni Product (Water, Enriched Semolina Semolina, Niacin, Ferrous Sulfate, Thiamine Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67944, N'Cooked White Meat Chicken (White Meat Chicken, Water, Modified Tapioca Starch, Sugar, Salt, Sodium Phosphate, Glazed with Water, Caramel Coloring, Modified Potato Starch)                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67947, N'Sauted Onions (Onions, Soybean Oil)                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67949, N'Black Beans                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67950, N'Jalapenos (Jalapeno Peppers, Salt, Citric Acid)                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67951, N'Sauted Garlic (Garlic, Soybean Oil)                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67952, N'Canola Oil                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67953, N'Ancho Chili Base (Chili Peppers, Dried Onion and Garlic, Yeast Extract, Salt, Spice, Beef Extract, Citric Acid)                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67955, N'Cilantro Flavor                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67957, N'Sour Cream Flavor (Maltodextrin Corn, Nonfat Dry Milk, Partially Hydrogenated Soybean Oil, Sugar, Lactose, Whey Milk, Corn Syrup Solids, Sodium Caseinate Milk, Flavoring, Mono- and Diglycerides, Sodium Citrate, Salt, Dipotassium Phosphate, Modified Cornstarch, Carrageenan)                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67961, N'Chicken Base (Chicken, Salt, Hydrolyzed Soy Protein, Chicken Fat, Corn Maltodextrin, Sugar, Chicken Broth, Onion Powder, Turmeric, Spice Extractives)                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67963, N'Stabilizer (Maltodextrin Corn, Monoglyceride, Soy Lecithin, Xanthan Gum, Guar Gum, Methylcellulose Gum, Citric Acid)                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67964, N'Lime Flavor                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67965, N'Chicken Flavor (Autolyzed Yeast Extract, Salt, Maltodextrin Corn, Gum Arabic, Chicken Fat, Torula Yeast, Natural Flavor, Turmeric)                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67966, N'Chili Type Flavor (Maltodextrin Corn, Sesame Oil, Flavor, Peanut Oil, Smoke Flavor BHT, BHA, Propyl Gallate, Citric Acid)                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67971, N'Bean Sprouts                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67977, N'Teriyaki Sauce (Soy Sauce Water, Wheat, Soybeans, Salt, Wine Contains Sulfites, Sugar, Water, Vinegar, Salt, Spices, Onion Powder, Succinic Acid, Garlic Powder)                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67979, N'Chili Garlic Sauce (Chili Pepper, Garlic, Water, Salt, Sugar, Rice Vinegar, Acetic Acid, Modified Cornstarch)                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67980, N'Molasses (may contain Sulfites)                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67982, N'Concentrated Mushroom Juice (Mushroom Juice, Sunflower Oil)                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67983, N'Ginger                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67986, N'Lime Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67987, N'Sesame Seed Oil                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67989, N'Chicken Broth Powder (Chicken Broth, Salt, Flavoring)                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67991, N'Chicken Flavor (Autolyzed Yeast Extract, Chicken Broth, Water, Salt, Flavor)                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67992, N'Sucralose (Water, Sucralose, Citric Acid, Sodium Citrate, Potassium Sorbate, Sodium Benzoate)                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (67994, N'Oven Roasted Turkey Breast Medallions (Turkey Breast Meat, Water, Seasoning Autolyzed Yeast Extract, Corn Maltodextrin, Salt, Turkey Flavor, Turkey Stock, Partially Hydrogenated Soybean Oil, Flavor, Gum Arabic, Modified Cornstarch, Salt, Canola Oil, Carrageenan, Sodium Phosphate, Natural Flavoring, Paprika)                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68001, N'Modified Tapioca Starch                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68003, N'Chicken Type Flavor (Flavor, Autolyzed Yeast Extract, Chicken Fat BHA, Propyl Gallate, Citric Acid, Glycerine, Soy Lecithin)                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68012, N'Flavor Enhancer (Dextrose, Salt, Autolyzed Yeast Extract, Modified Cornstarch)                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68017, N'Asparagus                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68019, N'Mushrooms (Mushrooms, Water, Citric Acid)                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68023, N'Beef Base (Roasted Beef and Concentrated Beef Stock, Hydrolyzed Corn, Soy and Wheat Protein, Autolyzed Yeast Extract, Sugar, Salt, Corn Maltodextrin, Chicken Fat, Corn Oil, Onion Powder, Spice Extractives)                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68025, N'Burgundy Wine (Burgundy Wine, Salt, Sulfites)                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68027, N'Mushroom Base (Sauted Mushrooms, Sugar, Salt, Canola Oil, Onion Powder, Potato Starch, Hydrolyzed Soy and Wheat Proteins, Caramel Color)                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68028, N'Hydrolyzed Vegetable Protein (Corn Gluten, Soy Protein and Wheat Gluten)                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68030, N'Chicken and Beef Stock Flavor Blend (Potassium Chloride, Corn Syrup Solids, Partially Hydrogenated Soybean Oil, Dehydrated Beef Stock, Dehydrated Chicken Stock, Corn Maltodextrin)                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68033, N'Pepper (Black, White)                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68036, N'Seasoning (Salt, Spice Extractives)                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68037, N'Cooked Seasoned Beef Pot Roast Dices and Modified Food Starch Product with Caramel Color added (Beef, Water and less than 1.5% Dextrose, Salt, Modified Cornstarch, Concentrated Beef Stock, Sodium Phosphates, Beef Tallow, Caramel Color, Spice Extractives)                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68043, N'Vermouth (Vermouth, Salt, Sulfites)                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68046, N'Sour Cream (Cultured Milk and Cream, Stabilizer Modified Cornstarch, Gelatin, Guar Gum, Sodium Citrate, Carrageenan, Salt, Locust Bean Gum)                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68050, N'Parmesan Cheese (Cultured Milk, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68052, N'Enriched Wheat Flour (Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68053, N'Cream (Cream, Milk, Carrageenan)                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68058, N'Chicken Broth Flavor (Hydrolyzed Vegetable Protein Hydrolyzed Corn Gluten, Dextrose, Disodium Inosinate and Guanylate, Autolyzed Yeast Extract  Autolyzed Yeast Extract, Natural Flavor, Soy Flour, Lactic Acid, Calcium Lactate, Dried Chicken Broth, Chicken Fat, Dried Chicken Meat, Dried Onion)                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68061, N'Pepper (Black, White, Red)                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68074, N'Green Bell Peppers                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68076, N'Ketchup (Tomato Concentrate, Distilled Vinegar, High Fructose Corn Syrup, Corn Syrup, Salt, Spice, Onion Powder, Natural Flavoring)                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68077, N'Pineapple (Pineapple, Pineapple Juice)                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68078, N'Vinegar (White Distilled Vinegar, Water)                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68080, N'Sherry Wine (Sherry Wine, Salt, Sulfites)                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68084, N'Sucralose (Water, Sucralose, Citric Acid, Sodium Citrate)                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68086, N'Zucchini                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68093, N'Dijon Mustard (Water, Mustard Seed, Distilled Vinegar, Salt, White Wine, Citric Acid, Tartaric Acid, Spices)                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68096, N'Cider Vinegar (Apple Cider Vinegar, Water)                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68100, N'Green Chili Peppers (Green Chili Peppers, Citric Acid, Salt)                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68101, N'Chili Powder (Chili Peppers, Cumin, Oregano, Salt, Garlic)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68103, N'Milk Chocolate (Sugar, Chocolate, Cocoa Butter, Nonfat Milk, Lactose, Milkfat, Soy Lecithin, Vanillin - an Artificial Flavor)                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68108, N'Confectioner''s Glaze (Lac-Resin)                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68109, N'TBHQ and Citric Acid (to preserve freshness)                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68112, N'Crisped Rice (Rice Flour, Sugar, Salt, Barley Malt)                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68116, N'Milkfat                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68120, N'Vanillin - an Artificial Flavor                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68122, N'Semi-Sweet Chocolate (Sugar, Chocolate, Cocoa Butter, Soya Lecithin-an Emulsifier, Vanillin-an Artificial Flavor)                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68124, N'Confectioner''s Glaze                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68126, N'Peppermint Oil                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68127, N'Invertase (an Enzyme)                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68128, N'Soya Albumin (a Protein)                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68150, N'Partially Hydrogenated Vegetable Oil (Contains one or more of  Palm Kernel, Palm, Soybean, Cottonseed)                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68154, N'Milk Protein Concentrate                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68155, N'Egg Albumen                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68158, N'Soya Protein                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68160, N'Milk Chocolate (Sugar, Cocoa Butter, Chocolate, Milk and Soya Lecithin - an Emulsifier)                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68164, N'Dry Whole Milk                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68165, N'Glycerol Monostearate                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68515, N'Beta-Carotene                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68534, N'Glucose Syrup                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68535, N'Semi-Sweet Chocolate (Sugar, Cocoa, Cocoa Liquor, Cocoa Butter, Butterfat, Soy Lecithin Emulsifier, Artificial Flavoring Vanillin)                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68538, N'Sweetened Condensed Skim Milk                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68539, N'Vegetable Oil (Palm Oil and/or Sheanut Oil)                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68541, N'Sorbitol Humectant                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68543, N'Food Starch-Modified                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68716, N'Romano Cheese from Cow''s Milk (Cultured Pasteurized Part Skim Milk, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68737, N'High Fructose Corn Syrup and / or Sugar                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68738, N'Sodium Benzoate (Preservative)                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68742, N'Flavored with Vanilla Extract                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68745, N'High Fructose Corn Syrup and/or Sugar                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68756, N'Citric Acid and Caramel Color                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68769, N'Baby Corn                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68774, N'Salt (for flavor)                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68882, N'Natural Fruit Punch Flavor with other Natural Flavors                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68890, N'Monopotassium Phosphate                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68891, N'Sodium Benzoate                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68892, N'Potassium Sorbate                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68894, N'Red #40                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68895, N'Calcium Disodium Salt of EDTA (protects freshness)                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68901, N'Pear Juice from Concentrate                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68903, N'Natural Dragonfruit                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68904, N'Raspberry                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68906, N'Lime Flavors with other Natural Flavors                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68911, N'Dragonfruit Puree                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (68914, N'Calcium Pantothenate (Vitamin B5)                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69291, N'Sodium Acetate                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69292, N'Artificial Color (including Red 40, Blue 1, Yellow 5)                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69299, N'Vegetable Oil (Contains one or more of  Corn, Soybean, and/or Sunflower Oil)                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69307, N'Romano Cheese from Cow''s Milk (Part-Skim Cow''s Milk, Cheese Cultures, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69319, N'Artificial Color (including Yellow 6, Yellow 5, Red 40)                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69323, N'Red and Green Bell Pepper Powder                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69336, N'Jalapeno Pepper Powder                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69348, N'Artificial Color (including Yellow 6 Lake, Red 40 Lake, Blue 1 Lake)                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69350, N'Dry Lemon Juice                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69351, N'Natural Cilantro Flavor                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69352, N'Natural Chicken Flavor                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69373, N'Artificial Color (including Yellow 6 Lake, Red 40 Lake, Yellow 6, Yellow 5, Red 40, Blue 1)                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69382, N'Cooked Rice                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69383, N'Chicken Tenderloin Chunks (Chicken Tenderloin, Water, Olive Oil, Seasoning Salt, Chicken Broth Powder {Maltodextrin, Chicken Broth, Salt, and Flavors}, Fructose, Soy Lecithin, Paprika, Flavors, and Caramel Color, Isolated Soy Protein Product  Isolated Soy Protein, Modified Food Starch, Starch, Carrageenan, Soy Lecithin)                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69386, N'Peas                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69388, N'Scallions                                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69390, N'Soy Sauce (Water, Wheat, Soybeans, Salt, Alcohol, Vinegar, and Lactic Acid)                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69391, N'Sake (Contains Salt)                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69395, N'Crushed Garlic (Contains Citric Acid)                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69401, N'Red Roasted Potatoes (Contains Salt)                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69402, N'Cooked Seasoned Grilled Beef Steak Strips and Modified Food Starch Product - Caramel Color and Smoke Flavor added (Beef, Water, Dextrose, Modified Food Starch, Potassium Chloride, Caramel Color, Sodium and Potassium Phosphates, Salt, Smoke Flavor, Spice Extractives)                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69409, N'Barbecue Seasoning: Brown Sugar                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69412, N'Worcestershire Sauce Powder (Corn Syrup Solids, Salt, Caramel Color, Garlic, Sugar, Spices Soy Sauce Solids Naturally Fermented Wheat and Soybean, Salt, Maltodextrin, Caramel Color, Palm Oil, Tamarind, Natural Flavor)                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69415, N'Spices including Paprika and Turmeric                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69416, N'Natural Smoke Flavor (Contains Maltodextrin)                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69419, N'Dehydrated Onion and Garlic. Tomato Paste                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69422, N'Red Wine Vinegar                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69430, N'Chicken Tenderloins (Chicken Tenderloins, Water, Olive Oil, Seasoning Salt, Chicken Broth Powder {Maltodextrin, Chicken Broth, Salt, and Flavors}, Fructose, Soy Lecithin, Paprika, Flavors, and Caramel Color, Isolated Soy Protein Product  Isolated Soy Protein, Modified Food Starch, Starch, Carrageenan, Soy Lecithin)                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69431, N'Snow Pea Pods                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69436, N'Honey Granules (Refinery Syrup, Honey)                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69438, N'Concentrated Pineapple Juice                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69439, N'Sesame Seed and Sesame Oil                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69441, N'Spices Modified Corn Starch                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69448, N'Seasoned Cooked Beef and Binder Product (Beef, Water,  Caramel Color, Dextrose, Flavor Natural Flavor, Salt, Maltodextrin, Dried Whey, Dried Cauliflower and Sesame Oil, Modified Corn Starch, Potassium Chloride, Potassium Phosphate, Salt, Sodium Phosphates, Spice Extractives)                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69451, N'Red and Green Peppers                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69453, N'Hoisin Sauce (Sugar, Water, Miso Soybeans, Rice, Salt, Plum Puree, Naturally Brewed Soy Sauce Water, Wheat, Soybeans, Salt, Garlic Caramel Color, Modified Food Starch, Fermented Wheat Protein, Vinegar, Salt, Spices, Xanthan Gum, Citric Acid)                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69459, N'Spice Blend                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69463, N'Cooked Whole Grain Brown Rice                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69467, N'Red Peppers                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69468, N'Sake                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69472, N'Wheat                                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69473, N'Soybeans                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69476, N'Garlic Puree                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69479, N'Grilled Fully Cooked Skinless Boneless Chicken Breast Fillet with Rib Meat (Chicken Breast Meat with Rib Meat, Water, Modified Food Starch, Salt, Seasoning White Pepper, Black Pepper, Garlic Powder, Celery Powder)                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69495, N'Enzyme Modified Butteroil                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69499, N'Soy Sauce (Wheat, Soybeans, Salt)                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69500, N'Dehydrated Butter                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69508, N'Turmeric (Color)                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69517, N'Cream (Cream, Carrageenan)                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69518, N'Walnuts                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69519, N'Chicken Base (Chicken Meat including Natural Chicken Juices, Corn Oil, Yeast Extract, Sugar, Salt, Maltodextrin from Corn, Natural Flavoring, Potato Starch, Turmeric)                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69520, N'Light Corn Syrup (Corn Syrup, Water, High Fructose Corn Syrup)                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69521, N'Corn Starch-Modified                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69524, N'Mushroom Base (Mushrooms, Salt, Butter, Flavorings, Sugar)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69525, N'Garlic (Garlic, Citric Acid)                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69526, N'Enriched Flour Bleached (Bleached Wheat Flour, Enzyme, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid or Folate)                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69527, N'Mirepoix Base (Sauted Vegetables Carrots, Celery and Onion, Sugar, Maltodextrin from Corn, Corn Oil, Salt, Cornstarch, Autolyzed Yeast Extract, Natural Flavoring)                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69528, N'Carrot Juice Concentrate (Carrot Juice Concentrate, Citric Acid)                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69529, N'Yeast Extract (Yeast Extract, Salt)                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69530, N'Partially Hydrogenated Cottonseed and Soybean Oil                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69532, N'Butter Flavor (Dehydrated Butter, Buttermilk Powder, Flavoring, Synthetic Calcium Silicate, Maltodextrin, Corn Starch-Modified Water, Soy Lecithin)                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69535, N'Cooked White Rice                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69536, N'Chicken Breast with Rib Meat                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69540, N'Apple Cider Vinegar                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69544, N'Lite Soy Sauce (Water, Wheat, Soybeans, Salt, Lactic Acid, Sodium Benzoate)                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69545, N'Eggs (Whole Eggs, Egg Whites, Skim Milk, Gelatin, Corn Starch-Modified, Carrageenan, Salt, Liquid Pepper Extract, Citric Acid, Annatto and Beta Carotene for color)                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69549, N'Ginger (Ginger, Water, Phosphoric Acid, Xanthan Gum)                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69550, N'Green Onion                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69552, N'Oriental Spice Base (Sauted Ginger, Chili Garlic Sauce Chili Peppers, Garlic, Water, Salt, Sugar, Rice Vinegar, Acetic Acid, Corn Starch-Modified, Maltodextrin, Sesame Oil, Salt, Sugar, Canola Oil, Soybeans, Water, Cornstarch, Spice, Wheat, Natural Flavoring, Brown Sugar, Garlic Powder, Caramel Color, Vinegar, Yeast Extract)                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69555, N'Flavoring (Dextrose, Salt, Corn Oil, Soy Sauce Water, Wheat, Soybeans, Salt, Sodium Benzoate, Tomato Puree, Natural Flavoring, Xanthan Gum, Locust Bean Gum, Potato Starch, Extractives of Paprika)                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69557, N'Milk Protein Concentrate (Sodium Caseinate, Reduced Lactose Whey)                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69558, N'Grilled Chicken Flavor (Yeast Extract, Salt, Chicken Powder, Maltodextrin, Sugar, Soy Sauce Solids Soybeans, Wheat, Salt, Tapioca Maltodextrin, Chicken Fat, Soy Flour, Torula Yeast, Flavor, Caramel Color, Citric Acid, Grilled Flavor from Vegetable Oil, Corn Starch-Modified, Corn Syrup Solids, Disodium Phosphate, Lactic Acid, Calcium Lactate Milk, Smoke Flavor)                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69561, N'Chicken Base (Chicken including Natural Chicken Juices, Salt, Chicken Fat, Sugar, Maltodextrin from Corn, Hydrolyzed Corn Gluten, Dried Whey Milk, Natural Flavoring, Yeast Extract, Turmeric)                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69562, N'Vinegar Powder (Maltodextrin, Vinegar)                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69565, N'Yeast Extract (Yeast Extract, Salt, Partially Hydrogenated Cottonseed and Soybean Oil)                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69567, N'Butter Flavor (Dehydrated Butter, Buttermilk Powder, Flavoring, Synthetic Calcium Silicate, Maltodextrin, Corn Starch-Modified, Water, Soy Lecithin)                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69570, N'Boneless and Skinless Chicken Breast                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69573, N'Shitake Mushrooms                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69577, N'Bamboo Shoots                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69578, N'Cashew Nuts (Cashews, Canola Oil)                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69582, N'Mirin Sake (Water, Rice, Dextrose, Corn Syrup, Salt)                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69588, N'Garlic (Citric Acid)                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69595, N'Fish Sauce (Anchovy Fish, Salt, Sugar)                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69600, N'Butter Flavor (Dehydrated Butter, Buttermilk Powder, Flavoring, Synthetic Calcium Silicate, Maltodextrin, Modified Corn Starch, Water, Soy Lecithin)                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69601, N'Potatoes (Roasted Potatoes, Sodium Acid Pyrophosphate)                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69602, N'Cooked Seasoned Beef & Modified Food Starch                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69608, N'Roasted Portobello Mushrooms                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69611, N'Burgundy Wine                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69612, N'Currant Jelly (Currant Juice Water and Currant Juice Concentrate, Corn Syrup, High Fructose Corn Syrup, Fruit Pectin, Citric Acid, Sodium Citrate)                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69614, N'Beef Au Jus Concentrate (Beef Stock, Salt, Natural Flavoring, Yeast Extract, Beef Fat, Cornstarch, Onion Powder, Soy Sauce Water, Soybeans, Wheat, Salt, Lactic Acid, Potato Starch, Beet Powder, Natural Flavor, Garlic Powder, Corn Syrup Solids)                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69618, N'Chicken Flavor (Yeast Extract, Salt, Chicken Powder, Maltodextrin, Sugar, Soy Sauce Solids Soybeans, Wheat, Salt, Tapioca Maltodextrin, Chicken Fat, Soy Flour, Torula Yeast, Flavor, Caramel Color, Citric Acid, Grill Flavor from Vegetable Oil, Corn Starch-Modified, Corn Syrup Solids, Disodium Phosphate, Lactic Acid, Calcium Lactate Milk, Smoke Flavor)                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69619, N'Demi Glace (Flour Wheat Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid, Sugar, Hydrolyzed Soy Protein, Corn Starch-Modified, Partially Hydrogenated Soybean Oil, Salt, Tomato Powder, Beef Fat, Beef Flavor Yeast Extract, Beef Stock, Beef Extract Powder, Wine Solids, Onion Powder, Caramel Color, Paprika, Beet Powder, Silico N Dioxide, Citric Acid, Yeast Extract, Spice)      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69624, N'Tomatoes (Tomatoes, Salt, Calcium Chloride, Citric Acid)                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69626, N'Reduced Fat Mozzarella Cheese (Pasteurized Part Skim Cow''s Milk, Cheese Cultures, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69627, N'Contains less than 2 percent of Sugar                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69632, N'Natural Four Cheese Flavor (Cheddar Cheese Milk, Cultures, Salt, Enzymes, Enzyme Modified Cheese Mozzarella Cheese (Milk, Cheese Cultures, Salt, Enzymes, Parmesan Cheese Milk, Culture, Salt, Enzymes, Water, Salt, American Cheese Milk, Culture, Salt, and Enzymes, Cream, Butter Oil, Lactic Acid, Disodium Phosphate, Soy Lecithin, Nonfat Dry Milk)                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69636, N'Cooked Spaghetti (Enriched Flour Durum Semolina (Wheat, Thiamin Mononitrate, Riboflavin, Niacin, Ferrous Sulfate, Folic Acid)                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69638, N'Chicken Breast Tenderloins                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69639, N'Red Plum Preserves (Red Plums, Corn Syrup, High Fructose Corn Syrup, Fruit Pectin, Citric Acid)                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69640, N'Bread Crumbs (Bleached Wheat Flour, Dextrose, Salt, Yeast)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69644, N'Contains less than 2 percent of Batter (Yellow Corn Flour, Bleached Wheat Flour, Salt, Leavening Sodium Acid Pyrophosphate, Sodium Bicarbonate, Nonfat Dry Milk, Spices, Dried Whole Eggs)                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69646, N'Lemon Juice (Lemon Juice, Benzoate Soda)                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69647, N'Seasoning (Hydrolyzed Corn Gluten)                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69651, N'Soybean Oil (Citric Acid)                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69652, N'Soy Sauce (Water, Wheat, Soybeans, Salt, Sodium Benzoate)                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69654, N'Prune Juice Concentrate (Soluble Prune Solids, Water)                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69655, N'Roasted Sesame Seed Oil                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69672, N'Vinegar (Water, Rice, Rice Wine Mill, Sugar Cane)                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69673, N'Apricot Preserves (Corn Syrup, Apricots, High Fructose Corn Syrup, Apricot Puree, Sugar, Fruit Pectin, Citric Acid)                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69674, N'Pineapple (Pineapple, Water, Sugar, Citric Acid)                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69675, N'Catsup (Tomatoes, Corn Syrup, Vinegar, Salt, Onion Powder, Garlic Powder, Spices, Natural Flavoring)                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69678, N'Orange Marmalade (Corn Syrup, High Fructose Corn Syrup, Orange Peel, Orange Juice Water, Orange Juice Concentrate, Fruit Pectin, Citric Acid, Orange Oil, Sodium Citrate)                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69682, N'Pineapple Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69692, N'White Corn Tortilla (White Corn, Water, Calcium Propionate or Potassium Sorbate, Lime)                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69695, N'Green Chilies (Green Chile Peppers, Water, Salt, Citric Acid, Calcium Chloride)                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69696, N'Black Beans (Black Beans, Water, Salt)                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69698, N'Monterey Jack Cheese (Pasteurized Milk, Cheese Culture, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69699, N'Salted Chablis Wine                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69701, N'Swiss Cheese (Part Skim Milk, Cheese Culture, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69702, N'Cream (Carrageenan)                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69706, N'Dehydrated Soy Sauce (Soy Sauce Wheat, Soybeans, Salt, Maltodextrin, Salt)                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69709, N'Seasoning (Dextrose, Salt, Corn Oil, Soy Sauce Water, Wheat, Soybeans, Salt, Sodium Benzoate, Tomato Puree, Natural Flavoring, Xanthan Gum, Locust Bean Gum, Potato Starch Extractives of Paprika)                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69711, N'Sodium Caseinate and Reduced Lactose Whey (Milk)                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69712, N'Cilantro Concentrate (Cilantro, Maltodextrin from Corn, Sugar, Salt, Natural Flavoring, Canola Oil, Cornstarch)                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69714, N'Chicken Flavoring (Chicken including Natural Chicken Juices, Salt, Chicken Fat, Sugar, Maltodextrin from Corn, Hydrolyzed Corn Gluten, Dried Whey (Milk, Natural Flavoring, Yeast Extract, Turmeric)                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69716, N'Cooked Whole Wheat Linguini (Whole Durum Wheat Flour, Water)                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69721, N'Peanut Butter (Peanuts, Dextrose, Corn Syrup, Fully Hydrogenated Vegetable Oil Cottonseed and Rapeseed Oils and Salt)                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69725, N'Contains less than 2 percent of Pineapple Juice Concentrate                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69730, N'Cream Roasted Sesame Seed Oil                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69740, N'Cooked Lasagna (Semolina, Niacin, Ferrous Sulfate, Thiamin Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69743, N'Lowfat Ricotta Cheese (Pasteurized Whey, Pasteurized Milk, Vinegar, Salt, Carrageenan, Vitamin A Palmitate)                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69744, N'Tomatoes in Puree (Tomatoes, Tomato Puree, Salt)                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69745, N'Cooked Beef Topping (Beef, Water, Textured Vegetable Protein Soy Protein Concentrate, Caramel Color, Salt, Seasoning Sugar, Spices, Spice Extractives, Sodium Phosphate, Hydrolyzed Corn Protein)                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69748, N'Mozzarella Cheese (Cultured Milk, Salt, Enzymes, Corn Starch-Modified, Sodium Citrate, Flavors, Annatto)                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69749, N'Contains less than 2 percent of Onions                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69752, N'Seasoning (Hydrolyzed Corn Gluten, Hydrolyzed Wheat Gluten, Yeast Extract, Partially Hydrogenated Soybean Oil)                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69753, N'Dehydrated Parmesan Cheese (Granular and Parmesan Cheese Pasteurized Milk, Cheese Cultures, Salt, Enzymes, Water, Salt, Lactic Acid, Citric Acid)                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69760, N'Enriched Flour (Wheat Flour, Enzyme, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, and Folic Acid)                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69764, N'Cooked Elbow Macaroni (Enriched Semolina Durum Wheat Semolina, Niacin, Ferrous Sulfate, Thiamin Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69767, N'Reduced Fat Cheddar Cheese (Pasteurized Lowfat Milk, Whey Protein Concentrate Milk, Cheese Cultures, Salt, Enzymes, Annatto Color, Vitamin A Palmitate)                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69768, N'Cheddar Cheese (Cultured Pasteurized Milk, Salt, Enzymes, Annatto Color, Potato Starch)                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69769, N'Contains less than 2 percent of Corn Starch-Modified                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69772, N'Natural Cheese Flavor (Cheddar Cheese, Natural Flavors, Maltodextrin, Water, Salt, Disodium Phosphate)                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69773, N'Cheese Flavor (a Dehydrated Blend of Cheddar Cheese Milk, Cheese Culture, Salt, Enzymes, Whey Milk, Buttermilk Solids Milk, Sodium Phosphate, Lactic Acid, FD&C Yellow 5 and 6)                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69783, N'Tomato Sauce (Water, Tomatoes, Tomato Puree, Salt)                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69788, N'Olives (Sliced Ripe Olives, Water, Salt, Ferrous Gluconate)                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69790, N'Green Olives (Olives, Water, Salt, Lactic Acid, Sodium Benzoate)                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69801, N'Cooked Whole Grain Blend (Long Grain Parboiled Brown Rice, Grain, Colusari Red Rice, Emperor''s Green Rice, Wild Rice)                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69803, N'Italian Cut Green Beans                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69806, N'Red Plum Preserves (Red Plumbs, Corn Syrup, High Fructose Corn Syrup, Fruit Pectin, Citric Acid)                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69807, N'Contains less than 2 percent of Soybean Oil (Citric Acid)                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69809, N'Prune Bits (Prune Bits, Vegetable Oil)                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (69811, N'Corn Starch - Modified                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70026, N'Apple Juice                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70027, N'Peach Puree                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70028, N'White Grape Juice from Concentrate (Water, White Grape Juice Concentrate)                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70029, N'Mangosteen Puree                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70030, N'Lemon Juice                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70034, N'D-Calcium Pantothenate (Vitamin B5)                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70172, N'Grade A Large Fresh Eggs                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70209, N'Diced Green Chile Peppers                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70211, N'Citric Acid and trace of Calcium Chloride                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70215, N'Green Chile Peppers                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70535, N'Low Fat Milk                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70537, N'Cultured Pasteurized Grade A Reduced Fat Milk                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70543, N'Tricalcium Phosphate                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70545, N'Vitamin A Acetate                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70555, N'Sweetened Condensed Skim Milk (Condensed Skim Milk, Sugar)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70558, N'Colored with Caramel and Annatto Extract                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70602, N'Tuna: Albacore                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70604, N'Vegetable Broth (Contains Soy)                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70606, N'Pyrophosphate. Crackers: Wheat Flour                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70610, N'Leavening (Sodium Bicarbonate, Sodium Acid Pyrophosphate, Monocalcium Phosphate)                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70611, N'Salt. Reduced Calorie Mayonnaise: Water                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70616, N'Egg Whites                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70617, N'Microcrystalline Cellulose                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70620, N'Sodium Benzoate and Potassium Sorbate (Preservatives)                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70622, N'Spices and Natural Flavor                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70625, N'Calcium Disodium EDTA                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70627, N'Oleoresin Turmeric. Sweet Relish: Pickles (Cucumbers, Water, Salt, Vinegar)                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70629, N'Cabbage                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70631, N'Distilled Vinegar                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70634, N'Natural Flavoring                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70637, N'Alum                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70638, N'Locust Bean and Guar Gums                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70639, N'Dehydrated Red Peppers                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70640, N'Oleoresin Turmeric                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70641, N'FD & C Yellow No. 5 & Blue No. 1                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70642, N'FD & C Yellow No. 5. Mint: Sugar                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70645, N'Peppermint Flavor                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70646, N'FD & C Blue No. 1                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70647, N'FD & C Yellow No. 5                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70648, N'Enriched Macaroni Product (Wheat Flour, Niacin, Ferrous Sulfate Iron, Thiamin Mononitrate Vitamin B1, Riboflavin Vitamin B2, Folic Acid); Cheese Sauce Mix (Whey, Modified Food Starch, Milkfat, Salt, Milk Protein Concentrate,  Sodium Tripolyphosphate, Cellulose Gel, Cellulose Gum, Citric Acid, Sodium Phosphate, Lactic Acid, Calcium Phosphate, Milk, Yellow 5, Yellow 6, Enzymes, Cheese Culture)      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70649, N'Enriched Macaroni Product (Durum Wheat Flour, Wheat Flour, Niacin, Ferrous Sulfate Iron, Thiamin Mononitrate Vitamin B1, Riboflavin Vitamin B2, Folic Acid)                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70650, N'Cheese Sauce Mix (Whey, Milkfat, Milk Protein Concentrate, Salt, Sodium Tripolyphosphate,  Citric Acid, Lactic Acid, Sodium Phosphate, Calcium Phosphate, Milk, Yellow 5, Yellow 6, Enzymes, Cheese Culture)                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70651, N'Enriched Macaroni Product (Wheat Flour, Niacin, Ferrous Sulfate Iron, Thiamin Mononitrate Vitamin B1, Riboflavin Vitamin B2, Folic Acid)                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70652, N'Cheese Sauce (Milk, Whey, Water, Canola Oil, Milk Protein Concentrate, Salt, Sodium Phosphate,  Whey Protein Concentrate, Sodium Alginate, Sorbic Acid as a preservative, Lactic Acid, Milkfat, Oleoresin Paprika color, Annatto color, Natural Flavor, Cheese Culture Enzymes)                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70653, N'Enriched Macaroni Product (Wheat Flour, Niacin, Ferrous Sulfate Iron, Thiamin Mononitrate Vitamin B1, Riboflavin Vitamin B2, Folic Acid); Cheese Sauce Mix (Whey, Milkfat, Milk Protein Concentrate, Salt, Sodium Tripolyphosphate,  Citric Acid, Lactic Acid, Sodium Phosphate, Calcium Phosphate, Milk, Yellow 5, Yellow 6, Enzymes, Cheese Culture)                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70654, N'Enriched Macaroni Product (Wheat Flour, Durum Wheat Flour, Niacin, Ferrous Sulfate Iron, Thiamin Mononitrate Vitamin B1, Riboflavin Vitamin B2, Folic Acid); Cheese Sauce Mix (Whey, Milkfat, Milk Protein Concentrate, Salt, Sodium Tripolyphosphate,  Citric Acid, Lactic Acid, Sodium Phosphate, Calcium Phosphate, Milk, Yellow 5, Yellow 6, Enzymes, Cheese Culture)                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70655, N'Enriched Macaroni Product (Wheat Flour, Glyceryl Monostearate, Niacin, Ferrous Sulfate Iron, Thiamin Mononitrate Vitamin B1, Riboflavin Vitamin B2, Folic Acid)                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (70656, N'Cheese Sauce Mix (Whey, Partially Hydrogenated Soybean Oil, Modified Food Starch, Corn Syrup Solids, Salt, Milkfat, Milk Protein Concentrate, Calcium Phosphate,  Medium Chain Triglycerides, Sodium Tripolyphosphate, Citric Acid, Sodium Phosphate, Lactic Acid, Milk, Apocarotenal Color, Yellow 5, Yellow 6, Artificial Flavor, Enzymes, Cheese Culture)                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71074, N'Cultured Pasteurized Grade A Non Fat Milk                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71084, N'Potassium Sorbate added to maintain freshness                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71089, N'Cherries                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71100, N'Blue #1                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71142, N'Milk Fat and Nonfat Milk                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71143, N'Flavor Base (Crystalline Fructose, Sour Cream and Almond Flavor with other Natural Flavors, Inulin Fiber, Food Starch-Modified, Sucralose, Citric Acid, Potassium Sorbate as Preservative, Annatto for color)                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71150, N'Cultures                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71154, N'Flavor Base (Crystalline Fructose, Blackberry Puree, Raspberry Puree, Black Raspberry Puree, Boysenberry Puree, Blackberry, Raspberry and Food Starch-Modified, Inulin Fiber, Sucralose, Citric Acid, Potassium Sorbate as Preservative, Red 40, Blue 1)                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71164, N'Pure Squeezed Orange Juice from Concentrate                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71165, N'Contains Pure Filtered Water                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71166, N'Premium Concentrated Orange Juice                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71167, N'Orange Juice                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71170, N'Florida Squeezed Orange Juice                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71175, N'Calcium Phosphate and Calcium Lactate                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71177, N'Pure Filtered Water                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71291, N'Diced Tomatoes (Tomatoes, Tomato Juice, Citric Acid)                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71295, N'Dried Onion                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71297, N'Extra Virginia Olive Oil                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71302, N'Roasted Garlic (Garlic, Soybean and/or Canola Oil)                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71306, N'Hot Pepper Sauce (Cayenne Peppers, Distilled Vinegar, Salt, Garlic)                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71308, N'Concentrated Lemon Juice                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71319, N'Spices and Crushed Red Chile Pepper                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71320, N'Peanut Oil                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71321, N'TBHQ and Citric Acid added to protect flavor                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71322, N'Dimethylpolysiloxane                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71323, N'an anti-foaming agent added                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71350, N'Roasted In-Shell Virginia Peanuts and Salt                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71353, N'Roasted in the Shell Virginia Peanuts and Salt                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71355, N'Select Potatoes cooked in Peanut Oil or a blend of Peanut Oil and Rice Bran or Corn Oil                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71362, N'Onion and Garlic Powder                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71363, N'Torula Yeast                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71367, N'Extractive of Paprika and Artificial Flavor                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71379, N'Vinegar Powder (Maltodextrin, Modified Food Starch, Vinegar Solids)                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71388, N'Paprika (Color)                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71400, N'Tabasco Brand Dry Red Pepper Flavoring (Red Pepper, Distilled Vinegar, Salt)                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71405, N'Chipotle Pepper                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71408, N'Beet Powder                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71417, N'Soy Sauce (Fermented Wheat, Soybeans, Salt, Maltodextrin, Caramel Color)                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71419, N'Tamarind                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71424, N'Vinegar Powder (Maltodextrin, Modified Food Starch, Vinegar)                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71427, N'Malic Acid and Sodium Citrate                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71430, N'Sour Cream & Onion Seasoning (Nonfat Milk Solids,   Maltodextrin, Onion Powder, Whey, Salt, Sour Cream Cream, Nonfat Milk, Cultures, Dextrose, MSG, Palm Oil, Parsley, Partially Hydrogenated Soybean and Cottonseed Oil, Lactose, Whey Protein Isolate, Buttermilk Solids, Citric Acid, Natural and Artificial Flavor, Lactic Acid)                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71434, N'BBQ Seasoning (Sugar,   Dextrose, Maltodextrin, Natural Flavor, Molasses, Onion Powder, MSG, Autolyzed Yeast Torula, Salt, Spices, Paprika and Extractives of Paprika, Garlic Powder, Tomato Powder, Partially Hydrogenated Soybean and Canola Oil, Yeast, Citric Acid, and Mesquite Smoke Flavor)                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71437, N'Corn and/or Cottonseed Oil                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71466, N'Sunflower Oil and/or Cottonseed Oil                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71482, N'Caramel Powder                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71492, N'Monosodium Glutamate                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71506, N'Wheat Maltodextrin                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71509, N'Malt Vinegar Solids                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71529, N'Corn Oil and/or Cottonseed Oil                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71531, N'Food Starch (Unmodified and Pregelatinized)                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71550, N'Cream Solids                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71554, N'Artificial Color (Including Blue 1, Red 40, Yellow 5 Lake)                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71676, N'Ramen Noodles: Enriched Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71677, N'Vegetable Oil (Contains one or more of  Canola Oil, Cottonseed Oil, Palm Oil)                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71683, N'Tocopherols                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71684, N'T-BHQ. Seasoning Mix: Salt                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71685, N'Soy Sauce Powder (Wheat, Soybeans, Maltodextrin, Salt)                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71688, N'Hydrolyzed Soy                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71689, N'Corn and Wheat Protein                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71693, N'Rice Oil                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71695, N'Disodium Succinate                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71696, N'Dehydrated Leek                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71697, N'Calcium Silicate (anticaking agent)                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71701, N'Vegetable Oil (Contains one or more of  Canola Oil, Cottonseed Oil, Palm Oil) preserved by Tocopherols and/or TBHQ and/or Ascorbyl Palmitate                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71706, N'Sodium Alginate. Seasoning Mix: Salt                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71710, N'Chicken Powder                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71717, N'Celery Powder                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71736, N'Autolyzed Torula Yeast Extract                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71737, N'Spice and Color                                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71740, N'Powdered Chicken                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71743, N'Soy Sauce (Wheat, Soybean, Salt)                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71746, N'Propylene Glycol Alginate                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71749, N'Autolyzed Baker''s Yeast Extract                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71752, N'Basil Flake                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71753, N'Parsley Flake                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71756, N'Tocopherol (preservative)                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71760, N'Egg White Powder                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71761, N'Ramen Noodles: Wheat Flour                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71769, N'Propylene Glycol Alginate (formulation aid)                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71772, N'Beta-Carotene Color. Seasoning Mix: MSG                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71773, N'Soy Sauce (Wheat, Soybean, Maltodextrin, Salt)                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71777, N'Sugars                                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71787, N'Vegetable Oil (Contains one or more of  Canola Oil, Rice Oil, Soy Oil, Sunflower Oil) preserved by Tocopherols and/or TBHQ and/or Ascorbyl Palmitate                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71791, N'Enriched Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71792, N'Vegetable Oil (Contains one or more of  Canola Oil, Cottonseed Oil, Palm Oil. Rice Oil) preserved by Tocopherols and/or TBHQ and/or Ascorbyl Palmitate                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71793, N'Dehydrated Vegetables (Corn, Carrot, Green Pea)                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71811, N'Beef Powder                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71815, N'Vegetable Oil (Contains one or more of  Canola Oil, Rice Oil, Soy Oil, Cottonseed Oil) preserved by Tocopherols and/or TBHQ and/or Ascorbyl Palmitate                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71818, N'Parmesan Cheese (Pasteurized Milk, Salt, Cheese Culture, Enzymes)                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71819, N'Egg Powder                                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71821, N'Dehydrated Cheese (Cultured Pasteurized Milk, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71822, N'Non-Dairy Creamer (Corn Syrup Solids, Partially Hydrogenated Soy Oil, Sodium Caseinate a Milk derivative, Dipotassium Phosphate, Mono- and Diglycerides)                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71824, N'Textured Soy Flour                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71825, N'Cooked Ham (cured with Salt, Sugar, Sodium Phosphate, Smoke Flavoring, Sodium Erythorbate, and Sodium Nitrite)                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71829, N'Sodium Triphosphate                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71831, N'Rendered Bacon Fat                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71836, N'Sugar Ester (Dissolving Agent)                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71843, N'Soy and Wheat Protein                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71983, N'Dried Pink Beans                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71989, N'Sweet Red Peppers                                                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (71996, N'Parmesan Cheese (Part-Skim Milk, Cultures, Salt, Enzymes)                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72001, N'Roasted Red Bell Pepper Puree                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72004, N'Paprika Extract (for Color)                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72005, N'Spice Extract (Contains Soy Lecithin)                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72006, N'Butternut Squash                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72025, N'Flavoring (Contains Milk, Soybean)                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72029, N'Super Sweet Dehydrated Corn (Corn, Maltodextrin, Cornstarch, Soy Lecithin)                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72030, N'Vegetable Oil (Canola, Soybean)                                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72034, N'Cream Powder (Milk)                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72038, N'Cilantro                                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72042, N'Sauted Vegetables (Onions, Carrots, Celery)                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72045, N'Chili and Chipotle Powders                                                                                                                                                                                                                                                                                                                                                                                      ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72046, N'Seasoning (Spice Extract with Soy Lecithin, Natural Grill Flavor from Sunflower Oil)                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72216, N'Carbonated Water and 2% or less of: Caramel Color                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72217, N'Artificial and Natural Flavors                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72235, N'High Fructose Corn Syrup and 2% or less of: Caramel Color                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72252, N'Cranberry Juice Concentrate                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72256, N'Potassium Benzoate And Potassium Sorbate (Preservatives)                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72269, N'Citric Acid and Caffeine                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72280, N'Caffeine and Blue 1                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72291, N'Reconstituted Whole Milk                                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72293, N'Lobster                                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72298, N'Lobster Flavor                                                                                                                                                                                                                                                                                                                                                                                                  ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72300, N'Bell Peppers                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72309, N'Cooked Andouille Sausage (Pork, Water, Seasonings Spices, Dextrose, Onion Powder, Garlic Powder, Salt, Hickory Char Oil Partially Hydrogenated Soybean Oil, Natural Woodsmoke Flavor, Sodium Nitrite)                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72311, N'Okra                                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72312, N'Green Peppers                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72313, N'Modified Wheat Starch                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72314, N'Green Chili Peppers                                                                                                                                                                                                                                                                                                                                                                                             ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72315, N'Chicken Broth Flavor Base (Chicken Broth, Salt, Chicken Flavor Contains Chicken Fat, Flavoring Dextrin)                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72322, N'Vegetable Flavor Blend (Vegetables Carrots, Onions, Celery, Salt, Sugar, Potato Flour, Carrot Powder)                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72325, N'Lower Sodium Natural Sea Salt                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72333, N'Chicken Sodium Phosphates                                                                                                                                                                                                                                                                                                                                                                                       ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72336, N'Chicken Flavor (Contains Chicken Stock, Chicken Powder, Chicken Fat)                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72337, N'Beta Carotene for Color                                                                                                                                                                                                                                                                                                                                                                                         ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72343, N'Cooked White Chicken Meat (White Chicken Meat, Water, Modified Food Starch, Soy Protein Concentrate, Salt, Sodium Phosphates, Chicken Flavor Chicken Stock, Chicken Powder, Chicken Fat, Natural Flavoring)                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72346, N'Enriched Egg Noodle (Wheat Flour, Egg White Solids, Whole Egg Solids, Niacin, Ferrous Sulfate, Thiamin Mononitrate, Riboflavin, Folic Acid)                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72361, N'Chicken Flavor (Chicken Stock, Salt and Enzyme)                                                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72365, N'Cultured Whey (Milk)                                                                                                                                                                                                                                                                                                                                                                                            ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72370, N'Whole Egg Solids                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72373, N'Roasted Natural White Meat Chicken                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72375, N'Cooked Black Beans                                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72382, N'Tortilla Chips (Whole Kernel Yellow Corn, Peanut Oil, Water, Salt, Lime)                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72387, N'Chipotle Chili Pepper                                                                                                                                                                                                                                                                                                                                                                                           ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72389, N'Natural Flavoring [Salt, Onion Juice Concentrate]                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72390, N'Rice Starch                                                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72391, N'Seasoning (Paprika, Spice, Garlic*, Onion*)                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72400, N'Eggs. * Dried                                                                                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72404, N'Egg Noodles (Wheat Flour, Eggs, Egg Whites)                                                                                                                                                                                                                                                                                                                                                                     ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72409, N'Modified Potato Starch                                                                                                                                                                                                                                                                                                                                                                                          ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72411, N'Flavoring Potassium Chloride                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72416, N'Vegetable Base (Carrots, Cabbage, Onions, Celery Leaves, Celery, Salt, Parsley)                                                                                                                                                                                                                                                                                                                                 ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72418, N'Natural Flavoring (Salt, Onion Juice Concentrate)                                                                                                                                                                                                                                                                                                                                                               ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72420, N'Chicken Flavor (Water, Flavoring, Chicken*, Chicken Fat)                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72422, N'Chives*. * Dried                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72426, N'Swiss Cheese (Part Skim Milk, Cheese Culture, Salt, Calcium Chloride, Enzyme)                                                                                                                                                                                                                                                                                                                                   ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72428, N'Cooking Wine                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72429, N'Flavoring (Milk)                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72431, N'Roasted Beef including Beef Juices                                                                                                                                                                                                                                                                                                                                                                              ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72433, N'Soy Sauce (Water, Soybeans, Salt, Wheat)                                                                                                                                                                                                                                                                                                                                                                        ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72442, N'Potato Flour                                                                                                                                                                                                                                                                                                                                                                                                    ')
GO
INSERT [dbo].[tIngredient] ([IngredientID], [Ingredient]) VALUES (72447, N'Paprika. * Dried                                                                                                                                                                                                                                                                                                                                                                                                ')
GO
SET IDENTITY_INSERT [dbo].[tIngredient] OFF
GO
SET IDENTITY_INSERT [dbo].[tLoyalty] ON 

GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (1, N'000000001 ', 1, CAST(N'2005-01-01' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (2, N'000000002 ', 1, CAST(N'2005-01-02' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (3, N'000000003 ', 1, CAST(N'2005-01-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (4, N'000000004 ', 1, CAST(N'2005-01-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (5, N'000000005 ', 1, CAST(N'2005-01-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (6, N'000000006 ', 2, CAST(N'2006-01-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (7, N'000000007 ', 3, CAST(N'2006-01-06' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (8, N'000000008 ', 4, CAST(N'2007-01-08' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (9, N'000000009 ', 6, CAST(N'2003-02-02' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (10, N'000000010 ', 5, CAST(N'2010-02-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (11, N'000000011 ', 8, CAST(N'2010-02-06' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (12, N'000000012 ', 9, CAST(N'2011-01-01' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (13, N'000000013 ', 10, CAST(N'2011-02-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (14, N'000000014 ', 11, CAST(N'2011-11-11' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (15, N'000000015 ', 12, CAST(N'2012-02-02' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (16, N'000000016 ', 13, CAST(N'2013-03-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (17, N'000000017 ', 14, CAST(N'2011-03-04' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (18, N'000000018 ', 15, CAST(N'2011-03-04' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (19, N'000000019 ', 16, CAST(N'2000-01-04' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (20, N'000000020 ', 17, CAST(N'1999-02-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (21, N'000000021 ', 18, CAST(N'2003-02-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (22, N'000000022 ', 19, CAST(N'2004-03-04' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (23, N'000000023 ', 20, CAST(N'2009-03-04' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (24, N'20        ', 1, CAST(N'2008-02-01' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (25, N'19        ', 2, CAST(N'2008-02-02' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (26, N'18        ', 3, CAST(N'2008-02-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (27, N'17        ', 4, CAST(N'2008-02-04' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (28, N'16        ', 5, CAST(N'2008-02-05' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (29, N'15        ', 6, CAST(N'2008-02-06' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (30, N'14        ', 7, CAST(N'2008-02-07' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (31, N'13        ', 8, CAST(N'2008-02-08' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (32, N'12        ', 9, CAST(N'2008-02-09' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (33, N'11        ', 10, CAST(N'2008-02-10' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (34, N'10        ', 11, CAST(N'2008-02-11' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (35, N'9         ', 12, CAST(N'2008-02-12' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (36, N'8         ', 13, CAST(N'2008-02-13' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (37, N'7         ', 14, CAST(N'2008-02-14' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (38, N'6         ', 15, CAST(N'2008-02-15' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (39, N'5         ', 16, CAST(N'2008-02-16' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (40, N'4         ', 17, CAST(N'2008-02-17' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (41, N'3         ', 18, CAST(N'2008-02-18' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (42, N'2         ', 19, CAST(N'2008-02-19' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (43, N'1         ', 20, CAST(N'2008-02-20' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (44, N'21        ', 20, CAST(N'2008-02-20' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (45, N'22        ', 19, CAST(N'2008-02-21' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (46, N'23        ', 18, CAST(N'2008-02-22' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (47, N'24        ', 17, CAST(N'2008-02-23' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (48, N'25        ', 16, CAST(N'2008-02-24' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (49, N'26        ', 15, CAST(N'2008-02-25' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (50, N'27        ', 14, CAST(N'2008-02-26' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (51, N'28        ', 13, CAST(N'2008-02-27' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (52, N'29        ', 12, CAST(N'2008-02-28' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (53, N'30        ', 11, CAST(N'2008-02-29' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (54, N'31        ', 10, CAST(N'2008-03-01' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (55, N'32        ', 9, CAST(N'2008-03-02' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (56, N'33        ', 8, CAST(N'2008-03-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (57, N'34        ', 7, CAST(N'2008-03-04' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (58, N'35        ', 6, CAST(N'2008-03-05' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (59, N'36        ', 5, CAST(N'2008-03-06' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (60, N'37        ', 1, CAST(N'2008-03-07' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (61, N'38        ', 2, CAST(N'2008-03-08' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (62, N'39        ', 4, CAST(N'2008-03-10' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (63, N'39.7      ', 5, CAST(N'2008-03-11' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (64, N'40.4      ', 6, CAST(N'2008-03-12' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (65, N'41.1      ', 7, CAST(N'2008-03-13' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (66, N'41.8      ', 8, CAST(N'2008-03-14' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (67, N'42.5      ', 9, CAST(N'2008-03-15' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (68, N'43.2      ', 10, CAST(N'2008-03-16' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (69, N'43.9      ', 11, CAST(N'2008-03-17' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (70, N'44.6      ', 12, CAST(N'2008-03-18' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (71, N'45.3      ', 13, CAST(N'2008-03-19' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (72, N'46        ', 14, CAST(N'2008-03-20' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (73, N'46.7      ', 15, CAST(N'2008-03-21' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (74, N'47.4      ', 16, CAST(N'2008-03-22' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (75, N'48.1      ', 17, CAST(N'2008-03-23' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (76, N'48.8      ', 18, CAST(N'2008-03-24' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (77, N'49.5      ', 19, CAST(N'2008-03-25' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (78, N'50.2      ', 20, CAST(N'2008-03-26' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (79, N'100       ', 1, CAST(N'2008-03-27' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (80, N'101       ', 2, CAST(N'2008-03-28' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (81, N'102       ', 3, CAST(N'2008-03-29' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (82, N'103       ', 4, CAST(N'2008-03-30' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (83, N'104       ', 5, CAST(N'2008-03-31' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (84, N'105       ', 6, CAST(N'2008-04-01' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (85, N'106       ', 7, CAST(N'2008-04-02' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (86, N'107       ', 8, CAST(N'2008-04-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (87, N'108       ', 9, CAST(N'2008-04-04' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (88, N'109       ', 10, CAST(N'2008-04-05' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (89, N'110       ', 11, CAST(N'2008-04-06' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (90, N'111       ', 12, CAST(N'2008-04-07' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (91, N'112       ', 13, CAST(N'2008-04-08' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (92, N'113       ', 14, CAST(N'2008-04-09' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (93, N'114       ', 15, CAST(N'2008-04-10' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (94, N'115       ', 16, CAST(N'2008-04-11' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (95, N'116       ', 17, CAST(N'2008-04-12' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (96, N'117       ', 18, CAST(N'2008-04-13' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (97, N'118       ', 19, CAST(N'2008-04-14' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (98, N'119       ', 20, CAST(N'2008-04-15' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (99, N'120       ', 1, CAST(N'2008-04-16' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (100, N'121       ', 2, CAST(N'2008-04-17' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (101, N'122       ', 3, CAST(N'2008-04-18' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (102, N'123       ', 4, CAST(N'2008-04-19' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (103, N'124       ', 5, CAST(N'2008-04-20' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (104, N'125       ', 6, CAST(N'2008-04-21' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (105, N'126       ', 7, CAST(N'2008-04-22' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (106, N'127       ', 8, CAST(N'2008-04-23' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (107, N'128       ', 9, CAST(N'2008-04-24' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (108, N'129       ', 10, CAST(N'2008-04-25' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (109, N'130       ', 11, CAST(N'2008-04-26' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (110, N'131       ', 12, CAST(N'2008-04-27' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (111, N'132       ', 13, CAST(N'2008-04-28' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (112, N'133       ', 14, CAST(N'2008-04-29' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (113, N'134       ', 15, CAST(N'2008-04-30' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (114, N'135       ', 16, CAST(N'2008-05-01' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (115, N'136       ', 17, CAST(N'2008-05-02' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (116, N'137       ', 18, CAST(N'2008-05-03' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (117, N'138       ', 19, CAST(N'2008-05-04' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (118, N'139       ', 20, CAST(N'2008-05-05' AS Date), NULL)
GO
INSERT [dbo].[tLoyalty] ([LoyaltyID], [LoyaltyNumber], [StoreID], [DateOfIssue], [ZipCode]) VALUES (119, N'None      ', 1, CAST(N'2000-01-01' AS Date), NULL)
GO
SET IDENTITY_INSERT [dbo].[tLoyalty] OFF
GO
SET IDENTITY_INSERT [dbo].[tManufacturer] ON 

GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (1, N'National Licorice Co.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (2, N'B & N Foods', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (3, N'Garilla America, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (4, N'Little Red, Ltd.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (5, N'Jlumetti''s Gourmet Foods, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (6, N'Rookbinder''s Food Products', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (7, N'Bush Sisters & Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (8, N'Shadbury Adams', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (9, N'Walbert''s', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (10, N'Jones Soup Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (11, N'Capri Moon, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (12, N'Citrus Universe', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (13, N'Pop-Cola Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (14, N'NewAgra Foods', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (15, N'Neal Foods', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (16, N'Shell Fonte Foods', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (17, N'Single B Foods, Inc', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (18, N'Nurse Prepper/ Six-Up, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (19, N'Ovum World''s Best, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (20, N'Ovumland''s Best, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (21, N'El Bean Foods', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (22, N'Refrito Lay, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (23, N'Refrito-Lay, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (24, N'Specific Mills', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (25, N'Golden Moon Trading, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (26, N'A.J Hunter Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (27, N'Hain Ocean Group, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (28, N'Born Chile Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (29, N'Martian Foods Corporation', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (30, N'Low Performance Beverage Co.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (31, N'Bob Smokehouse, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (32, N'Nationational Gourmet Specialties', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (33, N'Barrys, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (34, N'Smith Soda Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (35, N'Smitty Sales Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (36, N'Jones Sales Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (37, N'Shaftyness Foods North America', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (38, N'Joney Snacks, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (39, N'Paris Foods', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (40, N'Eagleton Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (41, N'Pawnee, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (42, N'Dairy Products LP', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (43, N'Spot''s Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (44, N'Clothed Juice Co.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (45, N'Unnatural Snacks', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (46, N'Chocolate USA', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (47, N'Snuggle USA Inc', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (48, N'Spring Foods', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (49, N'Blood Sausage Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (50, N'Pam''s Snacks LLC', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (51, N'Fred Mayer Food Corp.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (52, N'Murky Spring Water Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (53, N'Dan Pastorini Food Products', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (54, N'Dusty Farm, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (55, N'Snoke', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (56, N'Cheese-Cola Bottling', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (57, N'Budget''s Pride Corporation', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (58, N'Pinnacle Foods Corporation', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (59, N'Molar Beverages', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (60, N'Public Label - SpendCo', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (61, N'Public Label - Wills''s', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (62, N'Boring Quality Foods Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (63, N'Randalls Food and Drugs', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (64, N'Green Bull N.A., Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (65, N'Snarky Products Co., Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (66, N'Robbby''s, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (67, N'San Philllipe', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (68, N'Daves Dairy', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (69, N'Complex Orange Juice Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (70, N'Snapping Turtle Co.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (71, N'North Beach Beverage Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (72, N'Starstruck Seafood Co.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (73, N'Dewey''s Beverages, LLC', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (74, N'Stock USA', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (75, N'Taste of Artifice, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (76, N'Hannah Foods LLC', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (77, N'The Shannon Company', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (78, N'The Bottom Company, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (79, N'Spooky Roll Industries, Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (80, N'Ace Vent Foods', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (81, N'Shall-Mart Stores Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (82, N'Swells'' Dairy Inc.', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (83, N'WhiteWood Foods', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (84, N'Shoplait USA', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (85, N'Trapp''s Potato Chips', NULL, 0)
GO
INSERT [dbo].[tManufacturer] ([ManufacturerID], [Manufacturer], [Code], [IsSupplier]) VALUES (86, N'Hayes', NULL, 0)
GO
SET IDENTITY_INSERT [dbo].[tManufacturer] OFF
GO
SET IDENTITY_INSERT [dbo].[tName] ON 

GO
INSERT [dbo].[t ([NameID], [Name]) VALUES (1, N'2% Reduced Fat Milk')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (2, N'Baked Beans')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (3, N'Baked Snack Crackers')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (4, N'Baked Tortilla Chips')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (5, N'Beef Jerky')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (6, N'Bistro Selections Frozen Dinner')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (7, N'Candy')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (8, N'Cereal')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (9, N'Cheese Flavored Snacks')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (10, N'Chocolate Bar')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (11, N'Cola')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (12, N'Cola with Splenda')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (13, N'Cola with Vitamins and Minerals')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (14, N'Corn Chips')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (15, N'Cream Soda')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (16, N'Cut Baby Corn')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (17, N'Cut Green Beans')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (18, N'Desert')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (19, N'Dressing')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (20, N'Energy Drink')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (21, N'Energy Soda')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (22, N'Flavored Beverage')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (23, N'Flavored Cola')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (24, N'Flavored Potato Chips')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (25, N'Flavored Sports Drink')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (26, N'Flavored Tortilla Chips')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (27, N'Frozen Dinner')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (28, N'Frozen Dnner')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (29, N'Fruit Juice')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (30, N'Gourmet Popcorn')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (31, N'Grade A Extra Large Eggs')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (32, N'Grade A Large Brown Eggs')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (33, N'Grade A Large Eggs')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (34, N'Great Northern Beans')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (35, N'Green Chile Taco Salsa')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (36, N'Green Chili Sauce')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (37, N'Green Chilis')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (38, N'Half & Half')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (39, N'Ham')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (40, N'Ham Jerky')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (41, N'Hamburger Buns')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (42, N'Hamburger Helper')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (43, N'Lemon Lime Soda')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (44, N'Liquid Coffee Creamer')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (45, N'Lowfat Cottage Cheese')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (46, N'Lowfat Milk')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (47, N'Lowfat Yogurt')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (48, N'Lunch To-Go Kit')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (49, N'Macaroni and Chesse Dinner')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (50, N'Mild Cheddar & Monterey Jack Cheeses')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (51, N'Mild Cheddar Cheese')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (52, N'Milk')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (53, N'Moist Deluxe Cake Mix')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (54, N'Multigrain Snacks')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (55, N'Natural Spring Water')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (56, N'Naturally Flavored Soda')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (57, N'Naturally Flavored Water Beverage')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (58, N'Nonfat Yogurt')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (59, N'Orange Juice')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (60, N'Pasta Sauce')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (61, N'Peanut Oil')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (62, N'Peanuts')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (63, N'Potato Chips')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (64, N'Ramen Noodle Soup')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (65, N'Ramen Noodles')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (66, N'Ramen Noodles with Vegetables')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (67, N'Refried Beans')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (68, N'Restaurant Quality Soup')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (69, N'Soda')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (70, N'Soup')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (71, N'Sugarless Gum')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (72, N'Toasted Whole Grain Oat Cereal')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (73, N'Tomato Paste')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (74, N'Tomato Sauce')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (75, N'Tortilla Chips')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (76, N'Energy Bar')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (77, N'Peanut Butter')
GO
INSERT [dbo].[tName] ([NameID], [Name]) VALUES (78, N' Chocolate with Caramel Filling')
GO
SET IDENTITY_INSERT [dbo].[tName] OFF
GO
SET IDENTITY_INSERT [dbo].[tProduct] ON 

GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (2, N'', N'', N'49000037240 ', 9, 15, 2.3100, 18, N'Yummy Cupcakes', 2, 12, NULL, 1, NULL, N'', N'', N'', N'', N'', 1, NULL, NULL, N'', NULL, N'', 12, 150, N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', NULL, NULL, N'', N'', NULL, NULL, N'', N'', NULL, N'', N'', N'', NULL, N'', NULL, N'Cupcake', N'Exceedingly Yummy', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (3, N'', N'', N'12000012037 ', 55, 70, 9.2600, 57, N'Raspberry', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 65, 3, N'', N'', 0, 0, N'', N'', 0, N'', N'', N'', 0, N'', NULL, N'Filtered Water, Natural Flavors, Citric Acid, Sodium Hexametaphosphate, Phosphoric Acid, Sodium Benzoate (Preserves Freshness), Sodium Citrate, Sucralose (Splenda Brand), Calcium Disodium Edta (to Protect Flavor).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (4, N'', N'', N'12000012051 ', 55, 70, 4.7200, 57, N'Citrus Blend', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 65, 3, N'', N'', 0, 0, N'', N'', 0, N'', N'', N'', 0, N'', NULL, N'Filtered Water, Natural Flavors, Citric Acid, Sodium Hexametaphosphate, Phosphoric Acid, Sodium Benzoate (Preserves Freshness), Sodium Citrate, Sucralose (Splenda Brand), Calcium Disodium Edta (to Protect Flavor).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (5, N'', N'', N'12000015915 ', 55, 120, 1.2400, 21, N'Fueled by Power Pack', 18, 14, 1, 414, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 120, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 40, 2, N'', N'', 32, 11, N'', N'', 32, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Citric Acid, Natural Flavors, Sodium Benzoate (preserves freshness), Guarana Seed Extract (Paullina Capula), D-Ribose, Caffeine, Maltodextrin, Gum Arabic, Yellow 5, Ascorbic Acid (to protect flavor), Calcium Disodium EDTA (to protect flavor), Taurine, Panax Ginseng Extract, Brominated Vegetable Oil, Blue 1.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (6, N'', N'', N'12000019937 ', 55, 55, 14.4000, 23, N'Black Cherry French Vanilla', 18, 2.1, 6, 2, NULL, N'', N'', N'Smart Choices', N'', N'', 8, 1, 240, N'ML', 188, N'', 8, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 25, 1, N'', N'', 0, 0, N'', N'', 0, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Natural & Artificial Flavors, Phosphoric Acid, Aspartame, Potassium Benzoate (preserves freshness), Citric Acid, Potassium Citrate, Caffeine, Acesulfame Potassium, Calcium Disodium EDTA (to protect flavor).', N'Phenylketonurics: Contains Phenylalanine.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (7, N'', N'', N'12000020087 ', 55, 55, 3.7600, 23, N'Strawberries & Cream', 18, 2.1, 6, 2, NULL, N'', N'', N'Smart Choices', N'', N'', 8, 1, 240, N'ML', 188, N'', 8, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 25, 1, N'', N'', 0, 0, N'', N'', 0, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Phosphoric Acid, Natural & Artificial Flavors, Aspartame, Potassium Benzoate (preserves freshness), Citric Acid, Potassium Citrate, Caffeine, Acesulfame Potassium, Calcium Disodium EDTA (to protect flavor).', N'Phenylketonurics: Contains Phenylalanine.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (8, N'', N'', N'12000020094 ', 55, 55, 7.3800, 23, N'Strawberries & Cream', 18, 20, 1, 591, NULL, N'', N'', N'Smart Choices', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 25, 1, N'', N'', 0, 0, N'', N'', 0, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Phosphoric Acid, Natural & Artificial Flavors, Aspartame, Potassium Benzoate (preserves freshness), Citric Acid, Potassium Citrate, Caffeine, Acesulfame Potassium, Calcium Disodium EDTA (to protect flavor).', N'Phenylketonurics: Contains Phenylalanine.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (10, N'', N'', N'12000028625 ', 55, 122, 9.4100, 21, N'Charged with Raspberry Citrus Flavor and Ginseng', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'Low Sodium', 8, 1, 240, N'ML', 188, N'', 2.5, 110, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 40, 2, N'', N'', 31, 10, N'', N'', 30, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Natural Flavor, Citric Acid, Sodium Benzoate (preserves freshness), Caffeine, Sodium Citrate, Gum Arabic, Calcium Disodium EDTA (to protect flavor), Brominated Vegetable Oil, Panax Ginseng Root Extract, Blue 1, Red 40.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', 36, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (11, N'', N'', N'12000028700 ', 55, 121, 6.5900, 21, N'Blast of Strawberry Melon Flavor and Ginseng', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 110, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 40, 2, N'', N'', 31, 10, N'', N'', 30, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Citric Acid, Natural Flavor, Sodium Benzoate (preserves freshness), Caffeine, Sodium Citrate, Gum Arabic, Calcium Disodium EDTA (to protect flavor), Brominated Vegetable Oil, Panax Ginseng Root Extract, Red 40, Blue 1.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', 36, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (12, N'', N'', N'12000809941 ', 55, 142, 13.8200, 11, N'Twelve Pack', 2, 144, 1, 4.26, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 12, 150, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 30, 1, N'', N'', 41, 14, N'', N'', 41, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Sugar, Phosphoric Acid, Caffeine, Citric Acid and Natural Flavors.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', 38, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (13, N'', N'', N'12000809958 ', 55, 54, 7.1100, 11, N'Twelve Pack', 2, 144, 1, 4.26, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 12, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 35, 1, N'', N'', 0, 0, N'', N'', 0, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Aspartame, Phosphoric Acid, Potassium Benzoate (preserves freshness), Caffeine, Citric Acid Natural Flavor.', N'Phenylketonurics: Contains Phenylalanine.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', 35, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (14, N'', N'', N'12000811319 ', 55, 119, 4.9700, 69, N'Live Wire Orange', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 110, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 45, 2, N'', N'', 31, 10, N'', N'', 31, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup and or Sugar, Orange Juice from Concentrate, Natural and Artificial Flavor, Citric Acid, Sodium Benzoate (preserves freshness), Caffeine, Sodium Citrate, Yellow 6, Erythorbic Acid (preserves freshness), Calcium Disodium Brominated vegetable Oil, and Red 40.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (15, N'', N'', N'12546032124 ', 8, 50, 10.5800, 71, N'Cool Frost', 2, NULL, NULL, 319.2, NULL, N'', N'', N'', N'', N'', NULL, NULL, 1.9, N'G', 200, N'1', 168, -5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 1, -1, N'', N'', 0, N'', N'', N'1', 0, N'', NULL, N'Sorbitol, Gum Base, Mannitol, Artificial and Natural Flavoring, Glycerin, less than 2% of: Acesulfame Potassium, Aspartame, BHT (to maintain freshness), Blue 1, Red 40, Soy Lecithin, Sucralose and Titanium Dioxide (color).', N'Phenylketonurics: Contains Phenylalanine.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (16, N'', N'', N'12546075077 ', 8, 182, 13.1900, 71, N'Spearmint with Xylitol', 2, NULL, NULL, 367.2, NULL, N'', N'', N'', N'', N'', NULL, NULL, 1.7, N'G', 200, N'', 216, -5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 1, -1, N'', N'', 0, N'', N'', N'1', 0, N'', NULL, N'Sorbitol, Gum Base, Xylitol, Glycerin, Natural and Artificial Flavoring, Mannitol, Aspartame, Acesulfame Potassium, Soy Lecithin, Yellow 5 Lake, Blue 1 Lake and BHT (to maintain freshness).', N'Phenylketonurics: Contains Phenylalanine.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (17, N'', N'', N'12546075718 ', 8, 182, 14.3800, 71, N'Strawberry Fusion', 2, NULL, NULL, 216, NULL, N'', N'', N'', N'Mexico', N'', NULL, NULL, 3, N'G', 200, N'2', 72, 5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 2, 1, N'', N'', 0, N'', N'', N'2', 0, N'', NULL, N'Sorbitol, Gum Base, Maltitol, Xylitol, Glycerin, Natural and Artificial Flavoring, Less than 2% of: Acacia, Acesulfame Potassium, Acetylated Monoglycerides, Aspartame, BHT (to maintain freshness), Candelilla Wax, Cottonseed Oil, Red 40 Lake, Soy Lecithin, Titanium Dioxide (color), Yellow 5 Lake in Sweet Strawberry.', N'Phenylketonurics: Contains Phenylalanine.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (18, N'', N'', N'12546300261 ', 8, 50, 3.2100, 71, N'Spearmint', 13, NULL, NULL, 18, NULL, N'', N'', N'', N'', N'', NULL, NULL, 3, N'G', 200, N'2', 6, 5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 2, 1, N'', N'', 0, N'', N'', N'2', 0, N'', NULL, N'Sorbitol, Gum Base, Maltitol, Mannitol, Artificial and Natural Flavoring, less than 2% of: Acacia, Acesulfame Potassium, Aspartame, BHT (to maintain freshness), Candelilla Wax, Soy Lecithin, and Titanium Dioxide (Color).', N'Phenylketonurics: Contains Phenylalanine.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (19, N'', N'', N'12546302173 ', 8, 50, 8.7800, 71, N'Cool Frost', 13, NULL, NULL, 26.6, NULL, N'', N'', N'', N'', N'', NULL, NULL, 1.9, N'G', 200, N'1', 14, -5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 1, -1, N'', N'', 0, N'', N'', N'1', 0, N'', NULL, N'Sorbitol, Gum Base, Mannitol, Artificial and Natural Flavoring, Glycerin, less than 2% of: Acesulfame Potassium, Aspartame, BHT (to maintain freshness), Blue 1, Red 40, Soy Lecithin, Sucralose and Titanium Dioxide (color).', N'Phenylketonurics: Contains Phenylalanine.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (20, N'', N'', N'12546320313 ', 8, 49, 5.3100, 71, N'Cinnamon Spice', 13, NULL, NULL, 26.6, NULL, N'', N'', N'', N'', N'', NULL, NULL, 1.9, N'G', 200, N'1', 14, -5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', -1, 1, N'', N'', 0, N'', N'', N'1', 0, N'', NULL, N'Sorbitol, Gum Base, Mannitol, Artificial and Natural Flavoring, Glycerin, Less than 2% of: Acesulfame Potassium, BHT (to maintain freshness), Red 40, Red 40 Lake, Soy Lecithin and Sucralose.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (21, N'', N'', N'12546617543 ', 8, 183, 6.8500, 71, N'Wintergreen', 13, NULL, NULL, 18, NULL, N'', N'', N'', N'', N'', NULL, NULL, 3, N'G', 200, N'2', 6, 5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 2, 1, N'', N'', 0, N'', N'', N'2', 0, N'', NULL, N'Sorbitol, Gum Base, Maltitol, Mannitol, Natural and Artificial Flavoring, less than 2% of: Acacia, Acesulfame Potassium, Aspartame, BHT (to maintain freshness), Calcium Casein Peptone-Calcium Phosphate (Lactose-Free Milk derivative), Candelilla Wax, Glycerin, Mannitol, Sodium Stearate and Titanium Dioxide.', N'Phenylketonurics: Contains Phenylalanine.', N'Contains a Milk derived ingredient.', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (22, N'', N'', N'12546671316 ', 8, 183, 8.0800, 71, N'Cool Colada', 13, NULL, NULL, 18, NULL, N'', N'', N'', N'', N'', NULL, NULL, 3, N'G', 200, N'2', 6, 5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 2, 1, N'', N'', 0, N'', N'', N'2', 0, N'', NULL, N'Sorbitol, Gum Base, Maltitol, Mannitol, Natural and Artificial Flavoring, less than 2% of: Acacia, Acesulfame Potassium, Aspartame, BHT (to maintain freshness), Calcium Casein Peptone-Calcium Phosphate (Lactose free Milk derivative), Candelilla Wax, Glycerin, Sodium Stearate, Titanium Dioxide (Color).', N'Phenylketonurics: Contains Phenylalanine.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (23, N'', N'', N'12546671514 ', 8, 182, 0.8400, 71, N'Strawberry Fusion', 13, NULL, NULL, 18, NULL, N'', N'', N'', N'Mexico', N'', NULL, NULL, 3, N'G', 200, N'2', 6, 5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 2, 1, N'', N'', 0, N'', N'', N'2', 0, N'', NULL, N'Sorbitol, Gum Base, Maltitol, Xylitol, Glycerin, Natural and Artificial Flavoring, Less than 2% of: Acacia, Acesulfame Potassium, Acetylated Monoglycerides, Aspartame, BHT (to maintain freshness), Candelilla Wax, Cottonseed Oil, Red 40 Lake, Soy Lecithin, Titanium Dioxide (color), Yellow 5 Lake in Sweet Strawberry.', N'Phenylketonurics: Contains Phenylalanine.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (24, N'', N'', N'12546671576 ', 8, 183, 7.2800, 71, N'Cool Bubble', 13, NULL, NULL, 18, NULL, N'', N'', N'', N'', N'', NULL, NULL, 3, N'G', 200, N'2', 6, 5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 2, 1, N'', N'', 0, N'', N'', N'2', 0, N'', NULL, N'Sorbitol, Gum Base, Maltitol, Natural and Artificial Flavoring, less than 2% of: Acacia, Acesulfame Potassium, Aspartame, BHT (to maintain freshness), Calcium Casein Peptone-Calcium Phosphate (Lactose-Free Milk derivative), Candelilla Wax, Glycerin, Mannitol, Sodium Stearate, Soy Lecithin, Sucralose, Titanium Dioxide (Color).', N'Phenylketonurics: Contains Phenylalanine.', N'Contains a Milk derived ingredient.', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (25, N'', N'', N'12546673754 ', 8, 184, 9.1700, 71, N'Cool Mint', 13, NULL, NULL, 26.6, NULL, N'', N'', N'', N'', N'', NULL, NULL, 1.9, N'G', 200, N'1', 14, -5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 1, -1, N'', N'', 0, N'', N'', N'1', 0, N'', NULL, N'Sorbitol, Gum Base, Xylitol, Glycerin, Natural and Artificial Flavoring, Mannitol, less than 2% of: Acesulfame Potassium, Aspartame, BHT (to maintain freshness), Blue 1 Lake, Calcium Casein Peptone-Calcium Phosphate (Lactose-Free Milk Derivative), Soy Lecithin, Titanium Dioxide (Color) and Yellow 5 Lake).', N'Phenylketonurics: Contains Phenylalanine.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (26, N'', N'', N'14000001042 ', 42, 12, 3.8400, 52, N'', 18, 1, 2, 3.78, NULL, N'', N'', N'K-D', N'', N'', 8, 1, 240, N'ML', 188, N'', 16, 150, N'70', 8, 12, N'5', N'25', N'0', N'', N'', N'', N'35', N'11', 125, 5, N'', N'', 11, 4, N'0', N'0', 10, N'', N'', N'', 8, N'', NULL, N'Milk, Vitamin D3.', N'Keep Refrigerated', N'', N'6', N'4', 30, N'0', 25, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', 20, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (27, N'', N'', N'14000002728 ', 42, 147, 12.0100, 52, N'1% Lowfat', 18, 1, 2, 3.78, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 16, 100, N'25', 2.5, 4, N'1.5', N'8', N'0', N'', N'', N'', N'10', N'3', 125, 5, N'', N'', 12, 4, N'0', N'0', 11, N'', N'', N'', 8, N'', NULL, N'Lowfat Milk, Vitamin A Palmitate and Vitamin D3.', N'Keep Refrigerated', N'', N'10', N'4', 30, N'0', 25, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', 20, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (28, N'', N'', N'14000002773 ', 42, 12, 10.5500, 52, N'', 18, 1, 5, 473, NULL, N'', N'', N'K-D', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 150, N'70', 8, 12, N'5', N'25', N'0', N'', N'', N'', N'35', N'11', 125, 5, N'', N'', 11, 4, N'0', N'0', 10, N'', N'', N'', 8, N'', NULL, N'Milk, Vitamin D3.', N'Keep Refrigerated', N'', N'6', N'4', 30, N'0', 25, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', 20, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (29, N'', N'', N'14000002780 ', 42, 147, 2.1600, 52, N'2% Reduced Fat', 18, 1, 2, 3.78, NULL, N'', N'', N'K-D', N'', N'', 8, 1, 240, N'ML', 188, N'', 16, 120, N'45', 5, 8, N'3', N'15', N'0', N'', N'', N'', N'20', N'7', 125, 5, N'', N'', 12, 4, N'0', N'0', 11, N'', N'', N'', 8, N'', NULL, N'Reduced Fat Milk, Vitamin A Palmitate and Vitamin D3.', N'Keep Refrigerated', N'', N'10', N'4', 30, N'0', 25, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', 20, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (30, N'', N'', N'14000005026 ', 42, 12, 1.2100, 38, N'', 6, 1, 5, 473, NULL, N'', N'', N'K-D', N'', N'', 2, NULL, 30, N'ML', 188, N'', 16, 40, N'30', 3, 5, N'2', N'10', N'0', N'', N'', N'', N'15', N'4', 30, 1, N'', N'', 1, 0, N'0', N'0', 1, N'', N'', N'', 1, N'', NULL, N'Milk, Cream, Contains less than 1% of each of the following: Sodium Citrate and Disodium Phosphate.', N'Keep Refrigerated', N'', N'2', N'0', 4, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (31, N'', N'', N'14000008171 ', 42, 12, 7.6900, 45, N'Small Curd', 24, 24, 4, 680, NULL, N'', N'', N'K-D', N'', N'', 4, 4, 113, N'G', 200, N'', 6, 80, N'10', 1, 2, N'0.5', N'3', N'0', N'', N'', N'', N'10', N'3', 430, 18, N'170', N'5', 5, 2, N'0', N'0', 4, N'', N'', N'', 13, N'', NULL, N'Cultured Skim Milk, Milk, Cream, Salt, Grade A Whey, Artificial Color, Guar Gum, Potassium Sorbate (Preservative), Citric Acid, Natural Flavor, Corn Starch, Locust Bean Gum, Carrageenan, Sodium Phosphate, Potassium Phosphate, Vitamin A Palmitate, and Enzymes.', N'Keep Refrigerated', N'', N'4', N'0', 8, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (32, N'', N'', N'14000008249 ', 42, 12, 7.2200, 45, N'Small Curd', 24, 1, 3, 454, NULL, N'', N'', N'K-D', N'', N'', 4, 4, 113, N'G', 200, N'', 4, 80, N'10', 1, 2, N'0.5', N'3', N'0', N'', N'', N'', N'10', N'3', 430, 18, N'170', N'5', 5, 2, N'0', N'0', 4, N'', N'', N'', 13, N'', NULL, N'Cultured Skim Milk, Milk, Cream, Salt, Grade A Whey, Artificial Color, Guar Gum, Potassium Sorbate (Preservative), Citric Acid, Natural Flavor, Corn Starch, Locust Bean Gum, Carrageenan, Sodium Phosphate, Potassium Phosphate, Vitamin A Palmitate, and Enzymes.', N'Keep Refrigerated', N'', N'4', N'0', 8, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (33, N'', N'', N'14100075233 ', 54, 139, 7.4600, 3, N'Cheddar', 17, 1, 4, 28, NULL, N'', N'', N'', N'', N'0 Grams Trans Fat', 1, 4, 28, N'G', 200, N'', 1, 130, N'40', 4.5, 7, N'1', N'6', N'0', N'', N'1', N'2', N'-5', N'1', 240, 10, N'', N'', 19, 6, N'-1', N'3', -1, N'', N'', N'', 3, N'', NULL, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate (Vitamin B1), Riboflavin (Vitamin B2), Folic Acid], Cheddar Cheese [(Pasteurized Cultured Milk, Salt, Enzymes), Annatto], Vegetable Oils (Sunflower, Canola, and/or Soybean), Contains 2 percent or less of: Salt, Yeast, Sugar, Spices, Autolyzed Yeast, Leavening (Monocalcium Phosphate, Ammonium Bicarbonate, Baking Soda), and Onion Powder.', N'', N'', N'0', N'0', 2, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (34, N'', N'', N'14100077602 ', 54, 139, 5.8100, 3, N'Cheddar', 17, 1.5, 4, 43, NULL, N'', N'', N'', N'', N'', 1.5, 4, 43, N'G', 200, N'', 1, 200, N'60', 7, 11, N'2', N'10', N'0', N'', N'2', N'3.5', N'5', N'2', 360, 15, N'', N'', 28, 9, N'1', N'4', -1, N'', N'', N'', 5, N'', NULL, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate (Vitamin B1), Riboflavin (Vitamin B2), Folic Acid], Cheddar Cheese [(Pasteurized Cultured Milk, Salt, Enzymes), Annatto], Vegetable Oils (Sunflower, Canola, and/or Soybean), Contains 2 percent or less of: Salt, Yeast, Sugar, Spices, Autolyzed Yeast, Leavening (Monocalcium Phosphate, Ammonium Bicarbonate, Baking Soda), and Onion Powder.', N'', N'', N'0', N'0', 4, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (35, N'', N'', N'14100078678 ', 54, 139, 4.0700, 3, N'Cheddar', 5, 2, 4, 57, NULL, N'', N'', N'', N'', N'', 1.1, 4, 30, N'G', 200, N'', 2, 140, N'45', 5, 8, N'1', N'5', N'0', N'', N'1.5', N'2.5', N'-5', N'1', 250, 10, N'', N'', 20, 7, N'-1', N'3', -1, N'', N'', N'', 4, N'', NULL, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate (Vitamin B1), Riboflavin (Vitamin B2), Folic Acid], Cheddar Cheese [(Pasteurized Cultured Milk, Salt, Enzymes), Annatto], Vegetable Oils (Canola, Sunflower, and/or Soybean), Contains 2 percent or less of: Salt, Yeast, Sugar, Spices, Autolyzed Yeast, Leavening (Monocalcium Phosphate, Ammonium Bicarbonate, Baking Soda), and Onion Powder.', N'', N'', N'0', N'0', 4, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (36, N'', N'', N'14100081272 ', 54, 139, 3.4100, 3, N'Colors', 5, 2, 4, 57, NULL, N'', N'', N'', N'', N'', 1.1, 4, 30, N'G', 200, N'', 2, 140, N'45', 5, 8, N'1', N'5', N'0', N'', N'1.5', N'2.5', N'5', N'1', 260, 11, N'', N'', 20, 7, N'-1', N'4', -1, N'', N'', N'', 4, N'', NULL, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate (Vitamin B1), Riboflavin (Vitamin B2), Folic Acid], Cheddar Cheese [(Pasteurized Cultured Milk, Salt, Enzymes), Annatto], Vegetable Oils (Canola, Sunflower, and/or Soybean), Contains 2 percent or less of: Salt, Yeast, Sugar, Yeast Extract, Blue 2, Red 40, Spices, Red 3, Leavening (Baking Soda, Monocalcium Phosphate, Ammonium Bicarbonate), Annatto (Color), Onion Powder, Blue 1.', N'', N'', N'0', N'0', 4, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (37, N'', N'', N'14100085393 ', 54, 140, 8.7800, 3, N'Cheddar', 15, 6.6, 4, 187, NULL, N'', N'', N'', N'', N'', 1.1, 4, 30, N'G', 200, N'55', 6, 140, N'45', 5, 8, N'1', N'5', N'0', N'', N'1.5', N'2.5', N'5', N'2', 260, 11, N'', N'', 20, 7, N'-1', N'4', -1, N'', N'', N'', 4, N'', NULL, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate (Vitamin B1), Riboflavin (Vitamin B2), Folic Acid], Cheddar Cheese [(Pasteurized Cultured Milk, Salt, Enzymes), Annatto], Vegetable Oils (Canola, Sunflower, and/or Soybean), Contains 2 percent or less of: Salt, Yeast, Sugar, Autolyzed Yeast, Leavening (Baking Soda, Monocalcium Phosphate, Ammonium Bicarbonate), Spices, Onion Powder, Blue 2, Red 40, Red 3, Annatto (Color), and Blue 1.', N'', N'', N'0', N'0', 4, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (38, N'', N'', N'14100085461 ', 54, 139, 7.6600, 3, N'Parmesan', 15, 6.6, 4, 187, NULL, N'', N'', N'', N'', N'', 1.1, 4, 30, N'G', 200, N'', 6, 130, N'35', 4, 6, N'1', N'5', N'0', N'', N'1', N'2', N'0', N'0', 280, 12, N'', N'', 20, 7, N'-1', N'3', -1, N'', N'', N'', 4, N'', NULL, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate (Vitamin B1), Riboflavin (Vitamin B2), Folic Acid], Vegetable Oils (Canola, Sunflower and / or Soybean), Parmesan Cheese (Pasteurized Milk, Cheese Culture, Salt, Enzymes), Contains 2 percent or less of: Salt, Leavening (Ammonium Bicarbonate, Baking Soda, Monocalcium Phosphate), Yeast, Onion Powder, Sugar, and Yeast Extract.', N'', N'', N'0', N'0', 6, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (39, N'', N'', N'14100085478 ', 54, 139, 10.9500, 3, N'Cheddar', 15, 6.6, 4, 187, NULL, N'', N'', N'', N'', N'', 1.1, 4, 30, N'G', 200, N'55', 6, 140, N'45', 5, 8, N'1', N'5', N'0', N'', N'1.5', N'2.5', N'-5', N'1', 250, 10, N'', N'', 20, 7, N'-1', N'3', -1, N'', N'', N'', 4, N'', NULL, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate (Vitamin B1), Riboflavin (Vitamin B2), Folic Acid], Cheddar Cheese [(Pasteurized Cultured Milk, Salt, Enzymes), Annatto], Vegetable Oils (Sunflower, Canola and/or Soybean), Contains 2 percent or less of: Salt, Yeast, Sugar, Spices, Autolyzed Yeast, Leavening (Monocalcium Phosphate, Ammonium Bicarbonate, Baking Soda), and Onion Powder.', N'', N'', N'0', N'0', 4, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (40, N'', N'', N'14100085485 ', 54, 141, 9.7600, 3, N'Xtra Cheddar', 15, 6.6, 4, 187, NULL, N'', N'', N'', N'', N'', 1.1, 4, 30, N'G', 200, N'', 6, 140, N'50', 6, 9, N'1', N'5', N'0', N'', N'1.5', N'3', N'-5', N'1', 310, 13, N'', N'', 18, 6, N'-1', N'3', -1, N'', N'', N'', 4, N'', NULL, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate (Vitamin B1), Riboflavin (Vitamin B2), Folic Acid], Vegetable Oils (Canola, Sunflower and / or Soybean), Cheddar Cheese [(Pasteurized Milk, Cheese Culture, Salt, Enzymes), Water, Salt], Salt, Contains 2 percent or less of: Cheese Powder [Cheddar Cheese (Milk, Salt, Cheese Cultures, Enzymes), Whey, Buttermilk, Disodium Phosphate], Yeast, Sugar, Whey, Yellow Corn Flour, Yeast Extract, Spices, Leavening (Baking Soda, Ammonium Bicarbonate, Monocalcium Phosphate), Onion Powder, Autolyzed Yeast, Annatto (Color), Natural Butter Flavor, Citric Acid, Garlic Powder, Extractives of Paprika (Color), Lactic Acid and Spice Extract.', N'', N'', N'0', N'0', 4, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (41, N'', N'', N'14100085607 ', 54, 139, 11.2200, 3, N'Pizza', 15, 6.6, 4, 187, NULL, N'', N'', N'', N'', N'', 1.1, 4, 30, N'G', 200, N'', 6, 140, N'45', 5, 8, N'1', N'5', N'0', N'', N'1.5', N'3', N'0', N'0', 230, 10, N'', N'', 20, 7, N'-1', N'2', -1, N'', N'', N'', 3, N'', NULL, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate (Vitamin B1), Riboflavin (Vitamin B2), Folic Acid], Vegetable Oils (Canola, Sunflower and / or Soybean), Tomato Paste, Cheddar Cheese [(Pasteurized Milk, Cheese Culture, Salt, Enzymes), Water, Salt], Contains 2 percent or less of: Salt, Leavening (Ammonium Bicarbonate, Baking Soda, Monocalcium Phosphate), Yeast, Spices, Onion Powder and Extractives of Paprika (Color).', N'', N'', N'0', N'0', 2, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (42, N'', N'', N'14100086055 ', 54, 141, 10.1600, 3, N'Xtra Cheddar', 17, 0.9, 4, 26, NULL, N'', N'', N'', N'', N'', 0.9, 4, 26, N'G', 200, N'', 1, 120, N'40', 4.5, 7, N'1', N'5', N'0', N'', N'1', N'2', N'-5', N'1', 250, 10, N'', N'', 17, 6, N'-1', N'3', -1, N'', N'', N'', 3, N'', NULL, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate (Vitamin B1), Riboflavin (Vitamin B2), Folic Acid], Vegetable Oils (Canola, Sunflower and / or Soybean), Cheddar Cheese [(Pasteurized Milk, Cheese Culture, Salt, Enzymes), Water, Salt], Salt, Contains 2 percent or less of: Cheese Powder [Cheddar Cheese (Milk, Salt, Cheese Cultures, Enzymes), Whey, Buttermilk, Disodium Phosphate], Yeast, Sugar, Whey, Yellow Corn Flour, Autolyzed Yeast, Spices, Onion Powder, Leavening (Baking Soda, Monocalcium Phosphate, Ammonium Bicarbonate), Natural Butter Flavor, Citric Acid, Garlic Powder, Extractives of Paprika (Color), Lactic Acid and Spice Extract.', N'', N'', N'0', N'0', 2, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (43, N'', N'', N'14100086093 ', 54, 141, 11.5200, 3, N'Xtra Cheddar', 2, 10.8, 4, 306, NULL, N'', N'', N'', N'', N'', 0.9, 4, 26, N'G', 200, N'', 12, 120, N'40', 4.5, 7, N'1', N'5', N'0', N'', N'1', N'2', N'-5', N'1', 250, 10, N'', N'', 17, 6, N'-1', N'3', -1, N'', N'', N'', 3, N'', NULL, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate (Vitamin B1), Riboflavin (Vitamin B2), Folic Acid], Vegetable Oils (Canola, Sunflower and / or Soybean), Cheddar Cheese [(Pasteurized Milk, Cheese Culture, Salt, Enzymes), Water, Salt], Salt, Contains 2 percent or less of: Cheese Powder [Cheddar Cheese (Milk, Salt, Cheese Cultures, Enzymes), Whey, Buttermilk, Disodium Phosphate], Yeast, Sugar, Whey, Yellow Corn Flour, Autolyzed Yeast, Spices, Onion Powder, Leavening (Baking Soda, Monocalcium Phosphate, Ammonium Bicarbonate), Natural Butter Flavor, Citric Acid, Garlic Powder, Extractives of Paprika (Color), Lactic Acid and Spice Extract.', N'', N'', N'0', N'0', 2, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (44, N'', N'', N'14100087076 ', 54, 77, 1.0300, 3, N'Cheddar', 5, 33.5, 4, 950, NULL, N'', N'', N'', N'', N'', 1.1, 4, 30, N'G', 200, N'', 32, 140, N'45', 5, 8, N'1', N'5', N'0', N'', N'1.5', N'2.5', N'-5', N'1', 250, 10, N'', N'', 20, 7, N'-1', N'3', -1, N'', N'', N'', 4, N'', NULL, N'Unbleached Enriched Wheat Flour [Flour, Niacin, Reduced Iron, Thiamin Mononitrate (Vitamin B1), Riboflavin (Vitamin B2), Folic Acid], Cheddar Cheese [(Pasteurized Milk, Cheese Culture, Salt, Enzymes), Water, Salt], Vegetable Oils (Canola, Sunflower and / or Soybean), Contains 2 percent or less of: Salt, Yeast, Sugar, Yeast Extract, Leavening (Baking Soda, Ammonium Bicarbonate, Monocalcium Phosphate), Spices, Annatto (Color) and Onion Powder.', N'', N'', N'0', N'0', 4, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (45, N'', N'', N'14100087861 ', 54, 138, 7.0200, 41, N'Classic Whole Wheat', 17, 12.5, 4, 347, NULL, N'', N'', N'', N'', N'', 1.5, 4, 43, N'G', 200, N'', 8, 120, N'20', 2, 3, N'0', N'0', N'0', N'', N'1', N'0', N'0', N'0', 190, 8, N'', N'', 18, 6, N'2', N'8', 3, N'', N'', N'', 6, N'', NULL, N'Whole Wheat Flour, Water, High Fructose Corn Syrup, Wheat Gluten, Yeast, Contains 2% or less of: Soybean Oil, Salt, Datem (Dough Conditioner), Wheat Protein Isolate, Nonfat Milk, Calcium Propionate (to retard spoilage), Monoglyceride, and Enzymes.', N'', N'This product has been produced on equipment that processes products containing Sesame Seeds', N'0', N'0', 4, N'4', NULL, N'', N'', N'6', N'4', N'8', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'2', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (46, N'', N'', N'15839000015 ', 27, 75, 10.7900, 75, N'Blue Chips', 17, 9, 4, 255, NULL, N'', N'', N'K-Parve', N'', N'', 1, 4, 28, N'G', 200, N'15', 9, 140, N'60', 7, 11, N'0.5', N'3', N'0', N'', N'', N'', N'0', N'0', 60, 3, N'', N'', 18, 6, N'2', N'8', 0, N'', N'', N'', 2, N'', NULL, N'Organic Blue Corn, Expeller Pressed Canola Oil and/or Safflower and/or Sunflower Oil, Sea Salt.', N'', N'', N'0', N'0', 2, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (47, N'', N'', N'15839005003 ', 27, 75, 4.0300, 75, N'Black Bean', 17, 7.5, 4, 212, NULL, N'', N'', N'K-Parve, QAI Organic', N'', N'', 1, 4, 28, N'G', 200, N'13', 8, 140, N'60', 7, 11, N'0.5', N'4', N'0', N'', N'', N'', N'0', N'0', 70, 2, N'', N'', 18, 6, N'4', N'15', 0, N'', N'', N'', 3, N'', NULL, N'Organic Yellow Corn, Expeller Pressed Canola Oil and/or Safflower and/or Sunflower Oil, Organic Black Bean Flakes, Sea Salt.', N'', N'', N'2', N'0', 4, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (48, N'', N'', N'15839008219 ', 27, 75, 8.3000, 75, N'Blue Chips - Party Size', 17, 16, 4, 454, NULL, N'', N'', N'K-Parve, QAI Organic', N'', N'', 1, 4, 28, N'G', 200, N'15', 16, 140, N'60', 7, 11, N'0.5', N'3', N'0', N'', N'1', N'5', N'0', N'0', 60, 3, N'', N'', 18, 6, N'2', N'8', 0, N'', N'', N'', 2, N'', NULL, N'Organic Blue Corn, Expeller Pressed Canola Oil and/or Safflower and/or Sunflower Oil, Sea Salt.', N'', N'', N'0', N'0', 2, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (49, N'', N'', N'15839008479 ', 27, 75, 9.8600, 75, N'Guacamole', 17, 9, 4, 255, NULL, N'', N'', N'K-Dairy, QAI Organic', N'', N'', 1, 4, 28, N'G', 200, N'10', 9, 140, N'50', 6, 9, N'0.5', N'3', N'0', N'', N'1', N'4.5', N'0', N'0', 170, 7, N'', N'', 19, 6, N'2', N'9', -1, N'', N'', N'', 2, N'', NULL, N'Organic White Corn, Expeller Pressed Canola and/or Safflower and/or Sunflower Oil, Spices, Salt, Cane Juice Powder, Dehydrated Green Bell Pepper, Onion Powder, Garlic Powder, Sweet Whey, Lime Juice Powder (Lime Juice Solids, Maltodextrin), Yeast Extract, Buttermilk, Nonfat Milk, Expeller Pressed Avocado Oil, Citric Acid, Lemon Juice Powder (Lemon Juice Concentrate, Maltodextrin).', N'', N'', N'2', N'6', 4, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (50, N'', N'', N'16000141599 ', 24, 26, 7.5700, 72, N'', 20, 1.3, 4, 39, NULL, N'', N'', N'OU', N'', N'', 1.3, 4, 39, N'G', 200, N'', 1, 140, N'25', 2.5, 4, N'0.5', N'3', N'0', N'', N'', N'', N'0', N'0', 260, 11, N'', N'', 29, 10, N'4', N'15', 2, N'', N'', N'', 4, N'', NULL, N'Whole Grain Oats (includes the Oat Bran), Modified Corn Starch, Sugar, Salt, Tripotassium Phosphate, Oat Fiber, Wheat Starch, Vitamin E (Mixed Tocopherols) added to preserve freshness, Calcium Carbonate, Iron and Zinc (Mineral Nutrients), Vitamin C (Sodium Ascorbate), A B Vitamin (Niacinamide), Vitamin B6 (Pyridoxine Hydrochloride), Vitamin B2 (Riboflavin), Vitamin B1 (Thiamin Mononitrate), Vitamin A (Palmitate), A B Vitamin (Folic Acid), Vitamin B12, Vitamin D.', N'', N'', N'10', N'10', 10, N'60', 10, N'', N'', N'30', N'30', N'30', N'', NULL, N'30', 60, N'30', N'', N'', NULL, NULL, N'', N'30', N'', N'', N'', N'', N'', N'', N'', N'', N'1', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (51, N'', N'', N'16000194342 ', 24, 7, 12.4200, 42, N'Stoganoff Twin Pack', 2, 13, 4, 368, NULL, N'', N'', N'', N'', N'', 1.3, 4, 36, N'G', 200, N'', 10, 130, N'10', 1, 1, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 780, 32, N'120', N'3', 26, 9, N'1', N'4', 3, N'', N'', N'', 4, N'', NULL, N'Enriched Pasta (Semolina, Durum Flour, Niacin, Ferrous Sulfate, Thiamin Mononitrate, Riboflavin, Folic Acid), Maltodextrin, Corn Starch, Enriched Flour (Wheat Flour, Niacin, Iron, Thiamin Mononitrate, Riboflavin, Folic Acid), Salt, Whey, Hydrolyzed Vegetable Protein (Corn, Soy, Wheat), MSG, Artificial Color, *Tomato, *Onion, Sugar, Partially Hydrogenated Soybean Oil, Mono and Diglycerides, Lactic Acid, Citric Acid, *Garlic, Nonfat Milk, Calcium Lactate, Onion Powder, Natural Flavor, Parsley Flakes, Tapioca Maltodextrin, Mushroom Powder, Autolyzed Yeast Extract, Spices, Beef Stock, Butter, Disodium Inosinate, Disodium Guanylate, Egg. * Dried.', N'', N'Contains Wheat, Milk, Soy and Egg ingredients.', N'0', N'', 2, N'4', NULL, N'', N'', N'10', N'6', N'8', N'', NULL, N'', 10, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (52, N'', N'', N'16000275287 ', 24, 26, 8.4100, 72, N'', 2, 18, 4, 510, NULL, N'', N'', N'OU, AHA ', N'', N'', 1, 4, 28, N'G', 200, N'', 18, 100, N'15', 2, 3, N'0', N'0', N'0', N'', N'0.5', N'0.5', N'0', N'0', 190, 8, N'170', N'5', 20, 7, N'3', N'11', 1, N'', N'16', N'', 3, N'', NULL, N'Whole Grain Oats (includes the Oat Bran), Modified Corn Starch, Sugar, Salt, Oat Fiber, Tripotassium Phosphate, Wheat Starch, Vitamin E (mixed Tocopherols), added to preserve freshness. Calcium Carbonate, Iron and Zinc (Mineral Nutrients), Vitamin C (Sodium Ascorbate), a B Vitamin (Niacinamide), Vitamin B6 (Pyridoxine Hydrochloride), Vitamin B2 (Riboflavin), Vitamin B1 (Thiamin Mononitrate), Vitamin A (Palmitate), a B Vitamin (Folic Acid), Vitamin B12, Vitamin D3.', N'', N'', N'10', N'10', 10, N'45', 10, N'', N'', N'25', N'25', N'25', N'', NULL, N'25', 50, N'25', N'', N'', 10, NULL, N'10', N'25', N'', N'2', N'', N'', N'', N'', N'', N'', N'1', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (53, N'', N'', N'16000275621 ', 24, 123, 4.3100, 72, N'', 2, 12.8, 4, 362, NULL, N'', N'', N'OU', N'', N'', 1, 4, 29, N'G', 200, N'', 12, 110, N'10', 1, 2, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 200, 8, N'85', N'2', 23, 8, N'3', N'10', 6, N'', N'14', N'', 2, N'', NULL, N'Whole Grain Corn, Whole Grain Oats, Sugar, Whole Grain Barley, Whole Grain Rice, Whole Grain Wheat, Corn Starch, Brown Sugar Syrup, Corn Bran, Salt, Trisodium Phosphate, Canola and/or Rice Bran Oil, Distilled Monoglycerides, Color added, Vitamin E (mixed Tocopherols) added to preserve freshness. Calcium Carbonate, Zinc and Iron (Mineral Nutrients), Vitamin E (Tocopheryl Acetate), a B Vitamin (Niacinamide), Vitamin C (Sodium Ascorbate), a B Vitamin (Calcium Pantothenate), Vitamin B6 (Pyridoxine Hydrochloride), Vitamin B2 (Riboflavin), Vitamin B1 (Thiamin Mononitrate), a B Vitamin (Folic Acid), Vitamin A (Palmitate), Vitamin B12, Vitamin D.', N'', N'Contains Wheat ingredients.', N'10', N'25', 10, N'100', 10, N'100', N'', N'100', N'100', N'100', N'', NULL, N'100', 100, N'100', N'', N'100', 8, NULL, N'6', N'100', N'', N'2', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (54, N'', N'', N'16000275645 ', 24, 26, 5.5600, 72, N'', 2, 14, 4, 396, NULL, N'', N'', N'OU', N'', N'', 1, 4, 28, N'G', 200, N'', 14, 100, N'15', 2, 3, N'0', N'0', N'0', N'', N'0.5', N'0.5', N'0', N'0', 190, 8, N'170', N'5', 20, 7, N'3', N'11', 1, N'', N'16', N'', 3, N'', NULL, N'Whole Grain Oats (includes the Oat Bran), Modified Corn Starch, Sugar, Salt, Tripotassium Phosphate, Oat Fiber, Wheat Starch, Vitamin E (mixed Tocopherols), added to preserve freshness. Calcium Carbonate, Iron and Zinc (Mineral Nutrients), Vitamin C (Sodium Ascorbate), a B Vitamin (Niacinamide), Vitamin B6 (Pyridoxine Hydrochloride), Vitamin B2 (Riboflavin), Vitamin B1 (Thiamin Mononitrate), Vitamin A (Palmitate), a B Vitamin (Folic Acid), Vitamin B12, Vitamin D3.', N'', N'', N'10', N'10', 10, N'45', 10, N'', N'', N'25', N'25', N'25', N'', NULL, N'25', 50, N'25', N'', N'', 10, NULL, N'10', N'25', N'', N'2', N'', N'', N'', N'', N'', N'', N'1', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (55, N'', N'', N'16000411500 ', 24, 7, 2.4300, 42, N'Stoganoff', 2, 6.5, 4, 184, NULL, N'', N'', N'', N'', N'', 1.25, 4, 36, N'G', 200, N'', 5, 130, N'25', 2.5, 4, N'1', N'4', N'1', N'', N'', N'', N'-5', N'1', 780, 32, N'130', N'4', 23, 8, N'1', N'4', 3, N'', N'', N'', 4, N'', NULL, N'Enriched Pasta (Wheat Flour, Niacin, Iron, Thiamin Mononitrate, Riboflavin, Folic Acid), Partially Hydrogenated Soybean Oil, Corn Starch, Whey, Salt, Enriched Flour (Wheat Flour, Niacin, Iron, Thiamin Mononitrate, Riboflavin, Folic Acid), Hydrolyzed Protein (Corn, Soy, Wheat, Yeast), Maltodextrin, *Corn Syrup, *Sour Cream (Cream, Nonfat Milk, Cultures), Color Added, *Onion, Whey Protein Concentrate, *Tomato, Sugar, MSG, Dextrose, Citric Acid, Modified Corn Starch, Sodium Caseinate, *Garlic, Lactic Acid, *Parsley, Natural and Artificial Flavor, Beef Fat, Sodium Alginate, Autolyzed Yeast, Mushroom Powder, Disodium Phosphate, Calcium Lactate, Yeast Extract, Butter (Sweet Cream), Egg. *Dried.', N'', N'Contains Wheat, Soy, Milk and Egg ingredients.', N'0', N'', 2, N'4', NULL, N'', N'', N'15', N'8', N'8', N'', NULL, N'', 10, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (56, N'', N'', N'16000436732 ', 24, 7, 5.1100, 42, N'Crunch Taco', 2, 7.5, 4, 212, NULL, N'', N'', N'', N'', N'', 1.5, 4, 42, N'G', 200, N'', 5, 140, N'25', 3, 5, N'0.5', N'3', N'0.5', N'', N'', N'', N'0', N'0', 740, 31, N'115', N'3', 26, 9, N'-1', N'4', 2, N'', N'', N'', 2, N'', NULL, N'Enriched Parboiled Rice (Rice, Iron, Niacin, Thiamin Mononitrate, Folic Acid), Limed Corn Flour, Maltodextrin, Corn Starch, Partially Hydrogenated Vegetable Oil (Soybean, Canola and/or Cottonseed), Enriched Flour (Wheat Flour, Niacin, Iron, Thiamin Mononitrate, Riboflavin, Folic Acid), Salt, Whey, *Chili Pepper, *Corn Syrup, *Onion, *Tomato Flakes, *Ricotta Cheese (Whey, Milkfat, Lactic Acid, Salt), Citric Acid, MSG, *Cheddar Cheese (Milk, Cheese Cultures, Salt, Enzymes), Natural Flavor, *Blue Cheese (Milk, Cheese Cultures, Salt, Enzymes), *Garlic, Colored with Yellow Lakes 5 & 6, Soy Flour, Egg. * Dried.', N'', N'Contains Wheat, Milk, Egg and Soy ingredients.', N'4', N'', 4, N'6', NULL, N'', N'', N'6', N'2', N'2', N'', NULL, N'', 4, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (57, N'', N'', N'16000666108 ', 24, 26, 13.9800, 72, N'', 2, 15, 4, 425, NULL, N'', N'', N'OU, AHA ', N'', N'', 1, 4, 28, N'G', 200, N'', 15, 100, N'15', 2, 3, N'0', N'0', N'0', N'', N'0.5', N'0.5', N'0', N'0', 190, 8, N'170', N'5', 20, 7, N'3', N'11', 1, N'', N'16', N'', 3, N'', NULL, N'Whole Grain Oats, Modified Corn Starch, Corn Starch, Sugar, Oat Bran, Salt, Calcium Carbonate, Oat Fiber, Tripotassium Phosphate, Wheat Starch, Vitamin E (Mixed Tocopherols) added to preserve freshness, Iron and Zinc (Mineral Nutrients), Vitamin C (Sodium Ascorbate), a B Vitamin (Niacinamide), Vitamin B6 (Pyridoxine Hydrochloride), Vitamin B2 (Riboflavin), Vitamin B1 (Thiamin Mononitrate), Vitamin A (Palmitate), a B Vitamin (Folic Acid), Vitamin B12, Vitamin D.', N'', N'', N'10', N'10', 10, N'45', 10, N'', N'', N'25', N'25', N'25', N'', NULL, N'25', 50, N'25', N'', N'', 10, NULL, N'10', N'25', N'', N'2', N'', N'', N'', N'', N'', N'', N'1', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (58, N'', N'', N'16000687905 ', 24, 123, 4.2700, 72, N'', 2, 16, 4, 453, NULL, N'', N'', N'OU, AHA ', N'', N'', 1, 4, 29, N'G', 200, N'', 15, 110, N'10', 1, 2, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 200, 8, N'85', N'2', 23, 8, N'3', N'10', 6, N'', N'14', N'', 2, N'', NULL, N'Whole Grain Corn, Whole Grain Oats, Sugar, Whole Grain Barley, Whole Grain Rice, Whole Grain Wheat, Corn Starch, Brown Sugar Syrup, Corn Bran, Salt, Calcium Carbonate, Trisodium Phosphate, Canola and/or Rice Bran Oil, Distilled Monoglycerides, Zinc and Iron (Mineral Nutrients), Vitamin E (Tocopheryl Acetate), Color Added, A B Vitamin (Niacinamide), Vitamin C (Sodium Ascorbate), A B Vitamin (Calcium Pantothenate), Vitamin B6 (Pyridoxine Hydrochloride), Vitamin B2 (Riboflavin), Vitamin B1 (Thiamin Mononitrate), A B Vitamin (Folic Acid), Vitamin A (Palmitate), Vitamin B12, Vitamin D. Vitamin E (Mixed Tocopherols) added to preserve freshness.', N'', N'Contains Wheat ingredients.', N'10', N'25', 10, N'100', 10, N'100', N'', N'100', N'100', N'100', N'', NULL, N'100', 100, N'100', N'', N'100', 8, NULL, N'6', N'100', N'', N'2', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (59, N'', N'', N'16300151045 ', 12, 71, 1.5700, 59, N'Calcum & Vitamin D With Pulp', 5, 64, 1, 1.89, NULL, N'', N'', N'K-Parve, AHA ', N'', N'', 8, 1, 240, N'ML', 188, N'', 8, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 0, 0, N'450', N'13', 26, 9, N'0', N'0', 22, N'', N'', N'', 2, N'', NULL, N'Pasteurized Orange Juice, Tricalcium Citrate (Calcium source), and Vitamin D3.', N'', N'Keep Refrigerated', N'', N'120', 35, N'', 25, N'', N'', N'10', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'15', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (60, N'', N'', N'16300151144 ', 12, 71, 4.4100, 59, N'Original No Pulp', 5, 64, 1, 1.89, NULL, N'', N'', N'K-Parve, AHA ', N'', N'', 8, 1, 240, N'ML', 188, N'', 8, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 0, 0, N'450', N'13', 26, 9, N'0', N'0', 22, N'', N'', N'', 2, N'', NULL, N'Pasteurized Orange Juice.', N'', N'Keep Refrigerated', N'', N'120', NULL, N'', NULL, N'', N'', N'10', N'', N'4', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'15', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (61, N'', N'', N'16300151212 ', 12, 71, 2.2000, 59, N'Home Squeezed With Pulp', 5, 64, 1, 1.89, NULL, N'', N'', N'K-Parve, AHA ', N'', N'', 8, 1, 240, N'ML', 188, N'', 8, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 0, 0, N'450', N'13', 26, 9, N'0', N'0', 22, N'', N'', N'', 2, N'', NULL, N'Pasteurized Orange Juice.', N'', N'Keep Refrigerated', N'', N'120', NULL, N'', NULL, N'', N'', N'10', N'', N'4', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'15', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (62, N'', N'', N'16300151540 ', 12, 71, 12.9100, 59, N'Growers Style Most Pulp', 5, 64, 1, 1.89, NULL, N'', N'', N'K-Parve, AHA ', N'', N'', 8, 1, 240, N'ML', 188, N'', 8, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 0, 0, N'450', N'13', 26, 9, N'0', N'0', 22, N'', N'', N'', 2, N'', NULL, N'Pasteurized Orange Juice.', N'', N'Keep Refrigerated', N'', N'120', NULL, N'', NULL, N'', N'', N'10', N'', N'4', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'15', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (63, N'', N'', N'16300151953 ', 12, 71, 4.3000, 59, N'Calcum & Vitamin D No Pulp', 5, 64, 1, 1.89, NULL, N'', N'', N'K-Parve, AHA ', N'', N'', 8, 1, 240, N'ML', 188, N'', 8, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 0, 0, N'450', N'13', 26, 9, N'0', N'0', 22, N'', N'', N'', 2, N'', NULL, N'Pasteurized Orange Juice, Tricalcium Citrate (Calcium source), and Vitamin D3.', N'', N'Keep Refrigerated', N'', N'120', 35, N'', 25, N'', N'', N'10', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'15', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (64, N'', N'', N'17082007247 ', 38, 94, 3.4300, 5, N'Original - Trial Size', 17, 0.8, 4, 22, NULL, N'', N'', N'USDA Inspected', N'', N'', 0.8, 4, 22, N'G', 200, N'', 1, 60, N'5', 0.5, 1, N'0', N'0', N'0', N'', N'', N'', N'15', N'5', 470, 20, N'', N'', 2, 1, N'0', N'0', 2, N'', N'', N'', 12, N'54', NULL, N'Beef, Water, Sugar, less than 2% Salt, Corn Syrup Solids, Dried Soy Sauce (Soybeans, Salt, Wheat), Hydrolyzed Corn and Soy Protein, MSG, Maltodextrin, Flavorings, Sodium Erythorbate, Sodium Nitrite.', N'', N'Contains: Wheat and Soy', N'0', N'0', 0, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (65, N'', N'', N'17082007254 ', 38, 94, 1.8000, 5, N'Original', 17, 1.8, 4, 51, NULL, N'', N'', N'USDA Inspected', N'', N'', 1.8, 4, 51, N'G', 200, N'', 1, 140, N'15', 1.5, 2, N'0.5', N'3', N'0', N'', N'', N'', N'40', N'13', 1060, 44, N'', N'', 5, 2, N'0', N'0', 5, N'', N'', N'', 27, N'54', NULL, N'Beef, Water, Sugar, less than 2% Salt, Corn Syrup Solids, Dried Soy Sauce (Soybeans, Salt, Wheat), Hydrolyzed Corn and Soy Protein, MSG, Maltodextrin, Flavorings, Sodium Erythorbate, Sodium Nitrite.', N'', N'Contains: Wheat and Soy', N'0', N'0', 0, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (66, N'', N'', N'17082007285 ', 38, 94, 1.4100, 5, N'Original', 17, 3.25, 4, 92, NULL, N'', N'', N'USDA Inspected', N'', N'', 1, 4, 28, N'G', 200, N'', 3, 80, N'5', 0.5, 1, N'0', N'0', N'0', N'', N'', N'', N'20', N'7', 590, 25, N'', N'', 3, 1, N'0', N'0', 3, N'', N'', N'', 15, N'', NULL, N'Beef, Water, Sugar, less than 2% Salt, Corn Syrup Solids, Dried Soy Sauce (Soybeans, Salt, Wheat), Hydrolyzed Corn and Soy Protein, MSG, Maltodextrin, Flavorings, Sodium Erythorbate, Sodium Nitrite.', N'', N'Contains: Wheat and Soy', N'0', N'0', 0, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (67, N'', N'', N'17082007407 ', 38, 94, 4.8700, 5, N'Teriyaki - Trial Size', 17, 0.8, 4, 22, NULL, N'', N'', N'USDA Inspected', N'', N'', 0.8, 4, 22, N'G', 200, N'', 1, 60, N'5', 0.5, 1, N'0', N'0', N'0', N'', N'', N'', N'15', N'5', 380, 16, N'', N'', 4, 1, N'0', N'0', 4, N'', N'', N'', 11, N'', NULL, N'Beef, Water, Sugar, less than 2% Salt, Dried Soy Sauce (Soybeans, Salt, Wheat), Maltodextrin, Fructose, MSG, Flavorings, Hydrolyzed Corn Protein, Sodium Erythorbate, Paprika Extract, Sodium Nitrite.', N'', N'Contains: Wheat and Soy', N'0', N'0', 0, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (68, N'', N'', N'17082007414 ', 38, 94, 12.3300, 5, N'Teriyaki', 17, 1.8, 4, 51, NULL, N'', N'', N'USDA Inspected', N'', N'', 1.8, 4, 51, N'G', 200, N'', 1, 140, N'10', 1, 2, N'0.5', N'3', N'', N'', N'', N'', N'35', N'12', 860, 36, N'', N'', 9, 3, N'0', N'0', 9, N'', N'', N'', 25, N'50', NULL, N'Beef, Water, Sugar, Soy Sauce (Water, Wheat, Soybeans, Salt), Salt, Maltodextrin, MSG. Hydrolyzed Corn Gluten, Paprika, flavorings, Sodium Erythorbate, Sodium Nitrite', N'', N'', N'0', N'0', 0, N'14', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (69, N'', N'', N'17082007551 ', 38, 94, 1.1300, 5, N'Peppered', 17, 1.8, 4, 51, NULL, N'', N'', N'USDA Inspected', N'', N'', 1.8, 4, 51, N'G', 200, N'', 1, 140, N'15', 1.5, 2, N'0.5', N'3', N'0', N'', N'', N'', N'45', N'15', 1080, 45, N'', N'', 7, 2, N'0', N'0', 5, N'', N'', N'', 27, N'54', NULL, N'Beef, Water, Sugar, Less than 2% Salt, Black Pepper, Maltodextrin, Dried Soy Sauce (Soybeans, Salt, Wheat), MSG, Flavorings, Hydrolyzed Corn  Protein, Sodium Erythorbate, Paprika Extract, Sodium Nitrite.', N'', N'Contains: Wheat and Soy', N'0', N'0', 0, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (70, N'', N'', N'17082007711 ', 38, 94, 9.8300, 5, N'KC Masterpiece Barbecue', 17, 1.8, 4, 51, NULL, N'', N'', N'USDA Inspected', N'', N'', 1.8, 4, 51, N'G', 200, N'', 1, 140, N'10', 1, 2, N'1', N'5', N'0', N'', N'', N'', N'45', N'15', 775, 32, N'', N'', 14, 5, N'0', N'0', 14, N'', N'', N'', 18, N'', NULL, N'Beef, Water, Brown Sugar, Sugar, Vinegar, less than 2% KC Masterpiece Barbecue Sauce [High Fructose Corn Syrup, Tomato Puree (Tomato Paste), Molasses, less than 2% Spices, Natural Hickory Smoke Flavor, Natural Flavors, Vinegar, Modified Food Starch, Salt, Xanthan Gum, Sodium Benzoate as a Preservative, Dried Onion, Dried Garlic, Caramel Color], Salt, Maltodextrin, Spices, Dried Tomato, MSG, Citric Acid, Flavorings, Sodium Erythorbate, Sodium Tripolyphosphate, Disodium Inosinate, Caramel Color, Sodium Nitrite.', N'', N'', N'0', N'0', 0, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (71, N'', N'', N'17082007810 ', 38, 94, 6.2500, 5, N'Hickory Smoked', 17, 1.8, 4, 51, NULL, N'', N'', N'USDA Inspected', N'', N'', 1.8, 4, 51, N'G', 200, N'', 1, 150, N'15', 1.5, 2, N'0.5', N'3', N'0', N'', N'', N'', N'55', N'15', 980, 49, N'', N'', 9, 3, N'0', N'0', 9, N'', N'', N'', 25, N'50', NULL, N'Beef, Water, Brown Sugar, Sugar, Salt, less than 2% Natural Smoke Flavor, Spices, Flavorings, MSG, Sodium Nitrite.', N'', N'', N'0', N'20', 0, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (72, N'', N'', N'17082007889 ', 38, 94, 6.9500, 5, N'Sweet & Hot', 26, 3.25, 4, 92, NULL, N'', N'', N'USDA Inspected', N'', N'', 1, 4, 28, N'G', 200, N'', 3, 80, N'5', 0.5, 1, N'0', N'0', N'0', N'', N'', N'', N'25', N'8', 520, 22, N'', N'', 5, 2, N'0', N'0', 4, N'', N'', N'', 14, N'', NULL, N'Beef, Water, Sugar, less than 2% Salt, Flavorings, MSG, Sodium Nitrite.', N'', N'', N'0', N'0', 0, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (73, N'', N'', N'17082007957 ', 38, 95, 7.1300, 5, N'Teriyaki', 26, 3.25, 4, 92, NULL, N'', N'', N'USDA Inspected', N'', N'', 1, 4, 28, N'G', 200, N'', 3, 80, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'20', N'7', 600, 25, N'', N'', 5, 2, N'0', N'0', 5, N'', N'', N'', 14, N'', NULL, N'Beef, Water, Sugar, less than 2% Salt, Dried Soy Sauce (Soybeans, Salt, Wheat), Maltodextrin, Fructose, MSG, Flavorings, Hydrolyzed Corn Protein, Sodium Erythorbate, Paprika Extract, Sodium Nitrite.', N'', N'Contains: Wheat and Soy', N'0', N'0', 0, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (74, N'', N'', N'17082470027 ', 38, 94, 7.5400, 5, N'A1 Steak Sauce', 17, 1.8, 4, 51, NULL, N'', N'', N'USDA Inspected', N'', N'', 1.8, 4, 51, N'G', 200, N'', 1, 140, N'15', 2, 3, N'0', N'0', N'0', N'', N'', N'', N'45', N'15', 1390, 58, N'', N'', 9, 3, N'0', N'0', 9, N'', N'', N'', 22, N'', NULL, N'Beef, Water, Brown Sugar, Sugar, less than 2% Molasses Powder (Molasses, Maltodextrin), A.1. Steak Sauce Powder [Tomato Powder, Salt, Corn Syrup Solids, Vinegar Powder (Maltodextrin, Vinegar), Raisin Juice Concentrate, Refinery Syrup Powder, Spice, Maltodextrin, Molasses Powder, Citric Acid, Orange Juice Concentrate, Caramel Color, Garlic Powder, Tannic Acid, Onion Powder, Sugar, Garlic, Natural Flavor, Tamarind], Salt, Hydrolyzed Soy Protein, MSG, Spices, Worcestershire Sauce Powder (Maltodextrin, Distilled Vinegar, Molasses, Corn Syrup, Salt, Caramel Color, Garlic Powder, Sugar, Spices, Tamarind, Natural Flavor, Sulfiting Agents), Flavorings, Natural Grill Flavor (Maltodextrin, Flavor Modified Corn Starch, Corn Syrup Solids), Citric Acid, Sodium Diacetate, Orange Juice Powder (Corn Syrup Solids, Orange Juice Solids, Natural Flavors, Citric Acid), Sodium Citrate, Sodium Erythorbate, Sodium Nitrite.', N'Refrigerate after Opening', N'Contains: Soy', N'0', N'10', 0, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (75, N'', N'', N'17082470171 ', 38, 94, 3.0100, 5, N'Carne Seca - Jalapeno', 26, 3.25, 4, 92, NULL, N'', N'', N'USDA Inspected', N'', N'Spanish Translations', 1, 4, 28, N'G', 200, N'', 3, 70, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'25', N'8', 520, 22, N'', N'', 5, 2, N'0', N'0', 5, N'', N'', N'', 11, N'', NULL, N'Beef, Water, Sugar, less than 2% Salt, Flavorings, Dextrose, MSG, Sodium Diacetate, Brown Sugar, Citric Acid, Spice Extract, Sodium Nitrite.', N'', N'', N'0', N'0', 0, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (76, N'', N'', N'17082470560 ', 38, 94, 1.1100, 40, N'Maple & Brown Sugar', 26, 3.25, 4, 92, NULL, N'', N'', N'USDA Inspected', N'', N'', 1, 4, 28, N'G', 200, N'', 3, 80, N'10', 1.5, 2, N'1', N'5', N'0', N'', N'', N'', N'25', N'8', 370, 16, N'', N'', 7, 2, N'0', N'0', 6, N'', N'', N'', 11, N'', NULL, N'Ham, Sugar, Water, Brown Sugar, less than 2% Maltodextrin, Natural Maple Flavor (Maltodextrin, Natural Flavors, Dextrose, Molasses, Sugar, Caramel Color), MSG, Maple Syrup, Flavorings, Molasses, Sodium Erythorbate, Sodium Nitrite, Spices.', N'', N'', N'0', N'0', 0, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (77, N'', N'', N'21000010547 ', 37, 172, 5.3700, 27, N'Kung Pao Chicken', 2, 10.3, 4, 292, NULL, N'', N'', N'USDA Inspected', N'', N'', 10.3, 4, 292, N'G', 200, N'', 1, 300, N'100', 11, 17, N'2.5', N'13', N'0', N'', N'3.5', N'4.5', N'80', N'27', 890, 37, N'', N'', 18, 6, N'5', N'20', 7, N'', N'', N'', 32, N'50', NULL, N'Cooked Chicken Breast Strips with Rib Meat (Chicken Breast Meat with Rib Meat, Water, Modified Food Starch, Salt, Seasoning [White Pepper, Black Pepper, Garlic Powder, Celery Powder]),Broccoli, Water, Water Chestnuts, Red Bell Peppers, Yellow Bell Peppers, Roasted Peanuts, Contains less than 2% of Hoisin Sauce (Sugar, Water, Sweet Potatoes, Salt, Modified Food Starch, Soybeans, Spice, Sesame Seeds, Wheat Flour, Garlic, Chili Peppers, Acetic Acid), Soy Sauce (Water, Wheat, Soybeans, Salt, Lactic Acid), Oyster Flavored Sauce (Water, Sugar, Salt, Oyster Extract, Modified Food Starch, Caramel Color), Sherry Wine, Sesame Oil, Chicken Stock, Dried Garlic, Caramel Color, Salt, Chili Pepper Puree (Vinegar, Dried Arbol Chili Peppers, Dried Pequin Chili Peppers), Rice Vinegar, Modified Food Starch, Dried Onions, Toasted Sesame Seeds, Guar Gum, Soy Lecithin, Xanthan Gum, Toasted Sesame Oil, Flavor.', N'Keep Frozen', N'Manufactured on equipment that also processes Tree Nuts.', N'30', N'70', 6, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (78, N'', N'', N'21000010752 ', 37, 172, 7.6700, 27, N'Garlic Sesame Beef', 2, 11.2, 4, 317, NULL, N'', N'', N'USDA Inspected', N'', N'', 11.2, 4, 317, N'G', 200, N'', 1, 250, N'100', 11, 17, N'3', N'15', N'0', N'', N'2.5', N'4', N'65', N'22', 890, 37, N'', N'', 19, 6, N'4', N'16', 8, N'', N'', N'', 19, N'28', NULL, N'Cauliflower, Fully Cooked Seasoned Roasted Beef Steak Strips and Modified Food Starch Product - Caramel Color added (Beef, Water, Contains less than 2% of Concentrated Beef Stock, Modified Food Starch, Potassium Chloride, Salt, Dextrose, Sodium Phosphates, Caramel Color, Potassium Phosphates, Spice Extractives), Sugar Snap Peas, Water, Fire Roasted Yellow Bell Pepper, Fire Roasted Red Bell Pepper, Contains less than 2% of Rice Wine (Water, Rice, Dextrose, Corn Syrup Solids, Salt), Soy Sauce (Water, Wheat, Soybeans, Salt, Lactic Acid), Green Onions, Sesame Oil, Modified Food Starch, Dried Garlic, Beef Base (Roasted Beef including Natural Beef Juices, Salt, Hydrolyzed Vegetable Protein [Corn, Soy, Wheat Gluten], Sugar, Natural Flavorings, Caramel Color, Potato Flour, Disodium Guanylate, Disodium Inosinate, Tocopherol), Sesame Seeds, Ginger Puree (Ginger, Water, Citric Acid), Maltodextrin, Salt, Chili Pepper Puree (Vinegar, Dried Arbol  Chili Peppers, Dried Pequin Chili Peppers), Flavor Citric Acid, Dried Onions, Caramel Color).', N'Keep Frozen', N'', N'6', N'50', 6, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (79, N'', N'', N'21000011766 ', 37, 172, 6.8300, 27, N'Chicken Basilico with Rotini', 2, 10.4, 4, 294, NULL, N'', N'', N'USDA Inspected', N'', N'', 10.4, 4, 294, N'G', 200, N'', 1, 280, N'90', 10, 15, N'2.5', N'13', N'0', N'', N'1.5', N'5', N'50', N'17', 630, 26, N'', N'', 24, 8, N'7', N'28', 5, N'', N'', N'', 27, N'35', NULL, N'Cooked Chicken Breast Strips with Rib Meat (Chicken Breast Meat with Rib Meat, Water, Modified Food Starch, Salt, Seasoning [White Pepper, Black Pepper, Garlic Powder, Celery Powder]), Sugar Snap Peas, Water, Cooked Pasta (Water, Whole Wheat Flour, Modified Wheat Starch, Wheat Gluten, Wheat Protein Isolate, Contains less than 2% of Monoglycerides, Soybean Oil, Modified Food Starch, Xanthan Gum, Enzymes), Roasted Red Bell Pepper, Yellow Carrots, Contains less than 2% of Extra Virgin Olive Oil, Chicken Stock, Parmesan Cheese (Pasteurized Part-Skim Milk, Cheese Culture, Salt, Enzymes), Basil, Modified Food Starch, Salt, Roasted Garlic Puree (Roasted Crushed Garlic, Olive Oil), Dried Onions, Dried Garlic, Whey, Soy Lecithin, Guar Gum, Garlic, Buttermilk Solids, Dried Parsley, Spice, Xanthan Gum, Sodium Phosphates, Flavor, Maltodextrin.', N'Keep Frozen', N'', N'35', N'20', 10, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (80, N'', N'', N'21000300471 ', 37, 13, 13.2800, 45, N'Small Curd', 24, 16, 4, 453, NULL, N'', N'', N'OU-D', N'', N'', 4, 4, 124, N'G', 200, N'', 4, 90, N'20', 2.5, 4, N'1.5', N'8', N'0', N'', N'', N'', N'15', N'5', 400, 17, N'', N'', 6, 2, N'0', N'0', 4, N'', N'', N'', 12, N'', NULL, N'Cultured Pasteurized Grade A Skim Milk, Milk and Cream, Whey, Contains less than 2% of Modified Food Starch, Salt, Calcium Phosphate, Guar Gum, Natural Flavor, Vitamin A Palmitate, Vitamin D3.', N'Keep Refrigerated', N'', N'4', N'0', 15, N'0', 10, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (81, N'', N'', N'21000625055 ', 37, 106, 7.2200, 51, N'Natural Shredded', 28, 8, 4, 227, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 8, 110, N'80', 9, 14, N'6', N'30', N'0', N'', N'', N'', N'25', N'8', 190, 8, N'', N'', 1, 0, N'0', N'0', 0, N'', N'', N'', 6, N'', NULL, N'Cheddar Cheese (Pasteurized Milk, Cheese Culture, Salt, Enzymes, Annatto [Color]), Potato Starch, Cellulose Powder, and Calcium Sulfate added to prevent caking, Natamycin (a natural Mold Inhibitor).', N'Keep Refrigerated.', N'', N'6', N'0', 20, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (82, N'', N'', N'21000625109 ', 37, 106, 0.8500, 51, N'', 28, 12, 4, 340, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 12, 110, N'80', 9, 14, N'6', N'30', N'', N'', N'', N'', N'25', N'8', 190, 8, N'', N'', 1, 0, N'0', N'0', 0, N'', N'', N'', 6, N'', NULL, N'Cheddar Cheese (Pasteurized Milk, Cheese Culture, Salt, Enzymes, Annatto [Color]), Potato Starch, Cellulose Powder, and Calcium Sulfate added to prevent caking, Natamycin (a natural Mold Inhibitor).', N'Keep Refrigerated.', N'', N'6', N'0', 20, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (83, N'', N'', N'21000625161 ', 37, 106, 1.4500, 50, N'', 28, 8, 4, 226, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 8, 110, N'80', 9, 14, N'5', N'25', N'0', N'', N'', N'', N'25', N'8', 180, 8, N'', N'', -1, 0, N'0', N'0', 0, N'', N'', N'', 6, N'', 12, N'Cheddar and Monterey Jack Cheeses (Pasteurized Milk, Cheese Culture, Salt, Enzymes, Annatto [Color]), Potato Starch, Cellulose Powder, and Calcium Sulfate added to prevent caking, Natamycin (a natural Mold Inhibitor).', N'Keep Refrigerated.', N'Contains: Milk.', N'6', N'0', 20, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (84, N'', N'', N'21000645015 ', 37, 117, 3.0800, 19, N'', 11, 8, 1, 237, NULL, N'', N'', N'K-Pareve', N'', N'', 1, NULL, 15, N'G', 200, N'', 16, 40, N'30', 3.5, 5, N'0', N'0', N'0', N'', N'1.5', N'0.5', N'-5', N'1', 125, 5, N'', N'', 2, 1, N'', N'', 2, N'', N'', N'', 0, N'', NULL, N'Water, Soybean Oil, Vinegar, High Fructose Corn Syrup, Modified Food Starch, Sugar, Salt, Eggs, Egg Yolks, Mustard Flour, Artificial Color, Potassium Sorbate as a Preservative, Paprika, Spice, Natural Flavor, Dried Garlic.', N'Refrigerate after Opening.', N'', N'0', N'0', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (85, N'', N'', N'21000645046 ', 37, 117, 7.3000, 19, N'', 11, 16, 1, 473, NULL, N'', N'', N'K-Pareve', N'', N'', 1, NULL, 15, N'G', 200, N'', 32, 40, N'30', 3, 5, N'0', N'0', N'0', N'', N'1.5', N'0.5', N'-5', N'1', 125, 5, N'', N'', 2, 1, N'', N'', 2, N'', N'', N'', 0, N'', NULL, N'Water, Soybean Oil, Vinegar, High Fructose Corn Syrup, Modified Food Starch, Sugar, Salt, Eggs, Egg Yolks, Mustard Flour, Artificial Color, Potassium Sorbate as a Preservative, Paprika, Spice, Natural Flavor, Dried Garlic.', N'Refrigerate after Opening.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (86, N'', N'', N'21000645091 ', 37, 117, 6.8000, 19, N'', 29, 18, 1, 532, NULL, N'', N'', N'K-Pareve', N'', N'', 1, NULL, 15, N'G', 200, N'', 36, 40, N'30', 3, 5, N'0', N'0', N'0', N'', N'1.5', N'0.5', N'-5', N'1', 125, 5, N'', N'', 2, 1, N'', N'', 2, N'', N'', N'', 0, N'', NULL, N'Water, Soybean Oil, Vinegar, High Fructose Corn Syrup, Modified Food Starch, Sugar, Salt, Eggs, Egg Yolks, Mustard Flour, Artificial Color, Potassium Sorbate as a Preservative, Paprika, Spice, Natural Flavor, Dried Garlic.', N'Refrigerate after Opening.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (87, N'', N'', N'21000645114 ', 37, 117, 6.8600, 19, N'', 11, 32, 1, 946, NULL, N'', N'', N'K-Pareve', N'', N'', 1, NULL, 15, N'G', 200, N'', 64, 40, N'30', 3, 5, N'0', N'0', N'0', N'', N'1.5', N'0.5', N'-5', N'1', 125, 5, N'', N'', 2, 1, N'', N'', 2, N'', N'', N'', 0, N'', NULL, N'Water, Soybean Oil, Vinegar, High Fructose Corn Syrup, Modified Food Starch, Sugar, Salt, Eggs, Egg Yolks, Mustard Flour, Artificial Color, Potassium Sorbate as a Preservative, Paprika, Spice, Natural Flavor, Dried Garlic.', N'Refrigerate after Opening.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (88, N'', N'', N'90478212128 ', 33, 96, 3.8400, 56, N'Tamarind', 10, 13.5, 1, 400, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 8, 1, 240, N'ML', 188, N'', 2, 110, N'', 0, 0, N'', N'', N'0', N'', N'', N'', N'0', N'0', 25, 1, N'', N'', 29, 10, N'', N'', 29, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Natural Flavor, Caramel Color, Sodium Benzoate (as preservative) and Red 40.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (89, N'', N'', N'90478212135 ', 33, 96, 14.7800, 56, N'Fruit Punch', 10, 13.5, 1, 400, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 13.5, 1, 400, N'ML', 188, N'', 1, 190, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 60, 3, N'', N'', 48, 16, N'', N'', 48, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Natural and Artificial Flavors, Caramel Color, Sodium Benzoate (as preservative) and Red 40.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (90, N'', N'', N'90478212142 ', 33, 96, 6.0700, 56, N'Pineapple', 10, 13.5, 1, 400, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 13.5, 1, 400, N'ML', 188, N'', 1, 190, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 65, 3, N'', N'', 48, 16, N'', N'', 48, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Artificial Flavor, Sodium Benzoate (as preservative), Yellow 5 and Yellow 6.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (91, N'', N'', N'90478212180 ', 33, 96, 12.9300, 56, N'Grapefruit', 10, 13.5, 1, 400, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 13.5, 1, 400, N'ML', 188, N'', 1, 190, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 80, 2, N'', N'', 47, 15, N'', N'', 47, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Natural Flavor, Sodium Benzoate (as preservative), Yellow 5, Yellow 6.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (92, N'', N'', N'90478212197 ', 33, 96, 8.6400, 56, N'Guava', 10, 13.5, 1, 400, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 13.5, 1, 400, N'ML', 188, N'', 1, 190, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 60, 2, N'', N'', 48, 16, N'', N'', 48, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Natural and Artificial Flavors, Sodium Benzoate (as preservative), Red 40 and Yellow 6.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (93, N'', N'', N'90478212401 ', 33, 96, 9.0600, 56, N'Strawberry', 10, 13.5, 1, 400, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 13.5, 1, 400, N'ML', 188, N'', 1, 190, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 60, 2, N'', N'', 48, 16, N'', N'', 48, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Artificial Flavor, Sodium Benzoate (as preservative) and Red 40.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (94, N'', N'', N'90478216218 ', 33, 96, 7.3200, 56, N'Mandarin', 18, 67.6, 1, 2, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 8, 1, 240, N'ML', 188, N'', 2.5, 120, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 55, 2, N'', N'', 31, 10, N'', N'', 27, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Natural Flavor, Citric Acid, Sodium Benzoate (as preservative) and Artificial Colors (FD and C Yellow and Red 40).', N'', N'', N'', N'', NULL, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (95, N'', N'', N'90478216225 ', 33, 96, 12.8100, 56, N'Tamarind', 18, 67.6, 1, 2, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 8, 1, 240, N'ML', 188, N'', 2.5, 130, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 40, 2, N'', N'', 31, 10, N'', N'', 27, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Natural Flavor, Citric Acid, Sodium Benzoate (as preservative) and Artificial Colors (FD and C Red 40).', N'', N'', N'', N'', NULL, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (96, N'', N'', N'90478216232 ', 33, 96, 13.4900, 56, N'Fruit Punch', 18, 67.6, 1, 2, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 8, 1, 240, N'ML', 188, N'', 2.5, 120, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 50, 2, N'', N'', 29, 10, N'', N'', 27, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Natural Flavor, Citric Acid, Caramel Color, (FD and C Red 40), Sodium Benzoate (as preservative).', N'', N'', N'', N'', NULL, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (97, N'', N'', N'90478216256 ', 33, 96, 7.8100, 56, N'Lime', 18, 67.6, 1, 2, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 8, 1, 240, N'ML', 188, N'', 2.5, 120, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 40, 2, N'', N'', 30, 10, N'', N'', 25, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Natural Flavor, Citric Acid, Sodium Benzoate (as preservative) and Artificial Colors, (FD and C Yellow 5 and Blue 1).', N'', N'', N'', N'', NULL, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (98, N'', N'', N'90478216263 ', 33, 96, 9.7400, 56, N'Grapefruit', 18, 67.6, 1, 2, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 8, 1, 240, N'ML', 188, N'', 2.5, 190, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 80, 3, N'', N'', 47, 15, N'', N'', 47, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Natural Flavor, Sodium Benzoate (as preservative), Yellow 5, Yellow 6.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (99, N'', N'', N'90478216270 ', 33, 96, 2.2800, 56, N'Pineapple', 18, 67.6, 1, 2, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 8, 1, 240, N'ML', 188, N'', 2.5, 120, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 50, 2, N'', N'', 29, 10, N'', N'', 26, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Artificial Flavor, Sodium Benzoate (as preservative), and Artificial Colors (FD & C Yellow 5 and Yellow 6).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (100, N'', N'', N'90478216287 ', 33, 96, 11.4300, 56, N'Strawberry', 18, 67.6, 1, 2, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 8, 1, 240, N'ML', 188, N'', 2.5, 110, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 35, 2, N'', N'', 29, 10, N'', N'', 29, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Artificial Flavor, Sodium Benzoate (as preservative) and Red 40.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (101, N'', N'', N'90478216614 ', 33, 96, 11.5200, 56, N'Mandarin', 18, 20, 1, 600, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 8, 1, 240, N'ML', 188, N'', 2.5, 120, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 55, 2, N'', N'', 31, 10, N'', N'', 27, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Natural Flavor, Sodium Benzoate (as preservative), Yellow 6 and Red 40.', N'', N'', N'', N'', NULL, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (102, N'', N'', N'90478216621 ', 33, 96, 4.2900, 56, N'Tamarind', 18, 20, 1, 600, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 8, 1, 240, N'ML', 188, N'', 2.5, 130, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 40, 2, N'', N'', 31, 10, N'', N'', 27, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Natural Flavor, Sodium Benzoate (as preservative), Red 40.', N'', N'', N'', N'', NULL, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (103, N'', N'', N'90478216638 ', 33, 96, 2.2700, 56, N'Fruit Punch', 18, 20, 1, 600, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 8, 1, 240, N'ML', 188, N'', 2.5, 120, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 50, 2, N'', N'', 29, 10, N'', N'', 27, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Natural and Artificial Flavors, Caramel Color, Sodium Benzoate (as preservative), Red 40.', N'', N'', N'', N'', NULL, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (104, N'', N'', N'90478216652 ', 33, 96, 11.6400, 56, N'Lime', 18, 20, 1, 600, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 8, 1, 240, N'ML', 188, N'', 2.5, 120, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'0', N'0', 40, 2, N'', N'', 30, 10, N'', N'', 26, N'', N'', N'', 0, N'', NULL, N'Carbonated Water (Water, Carbon Dioxide), Sugar, Citric Acid, Natural Flavor, Sodium Benzoate (as preservative), Yellow 5 and Blue 1.', N'', N'', N'', N'', NULL, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (105, N'', N'', N'96619224968 ', 60, 105, 7.2100, 43, N'', 3, 12, 1, 355, NULL, N'', N'', N'OU', N'', N'', 12, 1, 355, N'ML', 188, N'', 1, 160, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 80, 3, N'', N'', 39, 13, N'', N'', 39, N'', N'', N'', NULL, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Citric Acid, Sodium Citrate, Natural Flavor, Salt.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (106, N'', N'', N'98794012125 ', 73, 176, 9.7100, 69, N'Grape', 10, 12, 1, 355, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 1, 190, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 50, 2, N'', N'', 48, 16, N'', N'', 48, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Artificial Flavor, Tartaric Acid, Sodium Benzoate (a Preservative), Citric Acid, Red 40, Gum Acacia, Blue 1.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (107, N'', N'', N'98794901122 ', 73, 176, 7.7100, 69, N'Key Lime', 10, 12, 1, 355, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 1, 180, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 50, 2, N'', N'', 46, 15, N'', N'', 46, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Natural and Artificial Flavor, Citric Acid, Sodium Benzoate (a Preservative), Gum Acacia, Ester Gum, Brominated Soybean Oil, Yellow 5, Blue 1, BHA (to protect flavor).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (108, N'', N'', N'182399000110', 76, 97, 3.5200, 5, N'Hickory Smoked Original', 17, 1.7, 4, 48, NULL, N'', N'', N'USDA Inspected', N'', N'', 1.7, 4, 48, N'G', 200, N'', 1, 130, N'20', 2, 3, N'1', N'0', N'0', N'', N'', N'', N'55', N'19', 860, 36, N'', N'', 7, 2, N'0', N'0', 6, N'', N'', N'', 21, N'42', NULL, N'Beef, Water, Brown Sugar, Contains 2% or less of Sugar, Salt, Hydrolyzed Soy Protein, Spices, Garlic Powder, Worcestershire Sauce (Maltodextrin, Distilled Vinegar, Molasses, Corn Syrup, Salt, Caramel Color, Garlic Powder, Sugar, Spices, Tamarind, Natural Flavor, Soy Sauce (Water, Salt, Hydrolyzed Soy Protein, Corn Syrup, Caramel Color, Potassium Sorbate), Genuine Jim Beam Bourbon, Sodium Erythorbate, Sodium Nitrite.', N'', N'Contains: Soy.', N'0', N'0', 0, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (109, N'', N'', N'182399000134', 76, 97, 8.8100, 5, N'Barbecue', 17, 1.7, 4, 48, NULL, N'', N'', N'USDA Inspected', N'', N'', 1.7, 4, 48, N'G', 200, N'', 1, 120, N'17', 2, 2, N'0', N'0', N'0', N'', N'', N'', N'30', N'9', 1000, 42, N'', N'', 7, 2, N'0', N'0', 7, N'', N'', N'', 20, N'40', NULL, N'Beef, Water, Brown Sugar, Salt, Sugar, BBQ Seasoning [Fructose, Salt, Chili Powder (Chili Pepper, Spices, Salt, Dehydrated Garlic), Less than 2% of Dehydrated Onion, Dehydrated Garlic, Spices, Spice Extractives, Natural Smoke Flavor (Maltodextrin), Yeast Extract, Dextrose], Genuine Jim Beam Bourbon, Seasonings (High Fructose Corn Syrup and/or Sucrose, Water, Caramel Color, Phosphoric Acid, Natural Flavors), Hydrolyzed Soy Protein, Black Pepper, Spices, Garlic Powder, White Pepper, Sodium Erythorbate, Sodium Nitrite.', N'', N'Contains: Soy.', N'0', N'0', 0, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (110, N'', N'', N'605388186744', 81, 78, 2.9400, 67, N'', 3, 16, 4, 454, NULL, N'', N'', N'', N'', N'Spanish Translations', 4.7, 4, 134, N'G', 200, N'', 3.5, 120, N'0', 0, 0, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 480, 20, N'550', N'16', 21, 7, N'7', N'28', 1, N'', N'', N'', 8, N'', NULL, N'Prepared Dry Beans, Water, Salt, Onion Powder.', N'', N'Manufactured in a facility that processes Milk, Eggs, Wheat, Soybeans.', N'0', N'0', 4, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (111, N'', N'', N'605388187161', 81, 78, 1.7700, 38, N'', 7, 32, 1, 946, NULL, N'', N'', N'K-D', N'', N'', 2, NULL, 30, N'ML', 188, N'', 32, 40, N'30', 3, 5, N'2', N'10', N'0', N'', N'0', N'1', N'15', N'4', 30, 1, N'45', N'1', 1, 0, N'0', N'0', 1, N'', N'', N'', 1, N'', NULL, N'Milk, Cream, Contains less than 1% of each of the following: Sodium Citrate, Disodium Phosphate.', N'Keep Refrigerated', N'Contains Milk. Manufactured in a facility that processes Eggs, Soybeans.', N'2', N'0', 4, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', 0, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (112, N'', N'', N'611269101713', 64, 154, 1.1400, 20, N'Sugar Free', 3, 8.3, 1, 250, NULL, N'', N'', N'', N'Austria', N'', 8.3, 1, 250, N'ML', 188, N'', 1, 10, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 200, 8, N'', N'', 3, 1, N'', N'', 0, N'', N'', N'', -1, N'', NULL, N'Carbonated Water, Sodium Citrate, Taurine, Glucuronolactone, Caffeine, Acesulfame K, Aspartame, Inositol, Xanthan Gum, Niacinamide, Calcium Pantothenate, Pyridoxine HCL, Vitamin B12, Natural and Artificial Flavors, Colors.', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'100', N'', NULL, N'250', NULL, N'80', N'', N'50', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (113, N'', N'', N'611269546019', 64, 154, 12.5600, 20, N'', 3, 16.9, 1, 500, NULL, N'', N'', N'', N'Austria or The Netherlands', N'', 8, 1, 240, N'ML', 188, N'', 2, 110, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 200, 8, N'', N'', 27, 9, N'', N'', 26, N'', N'', N'', -1, N'', NULL, N'Carbonated Water, Sucrose, Glucose, Sodium Citrate, Taurine, Glucuronolactone, Caffeine, Inositol, Niacinamide, Calcium Pantothenate, Pyridoxine HCL, Vitamin B12, Natural and Artificial Flavors, Colors.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'100', N'', NULL, N'250', NULL, N'80', N'', N'50', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (114, N'', N'', N'611269818994', 64, 154, 10.2000, 20, N'', 3, 12, 1, 355, NULL, N'', N'', N'', N'The Netherlands or Switzerland', N'', 12, 1, 355, N'ML', 188, N'', 1, 160, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 290, 12, N'', N'', 40, 13, N'', N'', 39, N'', N'', N'', -1, N'', NULL, N'Carbonated Water, Sucrose, Glucose, Sodium Citrate, Taurine, Glucuronolactone, Caffeine, Inositol, Niacinamide, Calcium Pantothenate, Pyridoxine HCL, Vitamin B12, Natural and Artificial Flavors, Colors.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'140', N'', NULL, N'360', NULL, N'120', N'', N'70', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (115, N'', N'', N'611269991000', 64, 154, 12.1800, 20, N'', 3, 8.4, 1, 250, NULL, N'', N'', N'', N'Austria', N'', 8.4, 1, 250, N'ML', 188, N'', 1, 110, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 100, 4, N'', N'', 28, 9, N'', N'', 27, N'', N'', N'', -1, N'', NULL, N'Carbonated Water, Sucrose, Glucose, Citric Acid, Taurine, Sodium Citrates, Magnesium Carbonate, Caffeine, Glucuronolactone, Inositol, Niacinamide, Calcium Pantothenate, Pyridoxine HCL, Vitamin B12, Natural and Artificial Flavors, Colors.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'100', N'', NULL, N'250', NULL, N'80', N'', N'50', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', 80, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (116, N'', N'', N'620221200098', 34, 98, 12.7700, 15, N'', 10, 12, 1, 355, NULL, N'', N'', N'K', N'', N'', 12, 1, 355, N'ML', 188, N'', 1, 190, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 30, 1, N'', N'', 48, 16, N'', N'', 48, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Inverted Cane Sugar, Natural and Artificial Flavors, Phosphoric Acid, Sodium Benzoate and Potassium Sorbate (as Preservatives), Calcium Disodium EDTA (to protect flavor).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (117, N'', N'', N'620221203099', 34, 98, 3.0200, 15, N'Sugar Free', 10, 12, 1, 355, NULL, N'', N'', N'K', N'', N'', 12, 1, 355, N'ML', 188, N'', 1, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 35, 1, N'', N'', 0, 0, N'', N'', 0, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Natural and Artificial Flavors, Phosphoric Acid, Sucralose, Sodium Benzoate and Potassium Sorbate (as Preservatives), Calcium Disodium EDTA (to protect flavor).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (118, N'', N'', N'644209410200', 58, 64, 13.2500, 53, N'Classic Yellow Cake', 2, 18.25, 4, 517, NULL, N'', N'', N'OU', N'', N'', 1.5, 4, 43, N'G', 200, N'', 12, 180, N'25', 3, 5, N'1', N'5', N'', N'', N'1', N'1', N'0', N'0', 280, 12, N'', N'', 36, 12, N'', N'', 20, N'', N'', N'', 2, N'', NULL, N'Sugar, Enriched Bleached Wheat Flour (Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid), Partially Hydrogenated Soybean Oil, Leavening (Baking Soda, Dicalcium Phosphate, Sodium Aluminum Phosphate, Monocalcium Phosphate), Wheat Starch, Propylene Glycol Mono- and Diesters of Fats, Dextrose, Salt, Polyglycerol Esters of Fatty Acids, Cellulose Gum, Mono- and Diglycerides, Artificial Flavors, Xanthan Gum, Colored with (Yellow 5 Lake, Red 40 Lake).', N'', N'Contains Wheat.', N'', N'', 8, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (119, N'', N'', N'644209410408', 58, 64, 12.2800, 53, N'Devil''s Food', 2, 18.25, 4, 517, NULL, N'', N'', N'OU', N'', N'', 1.5, 4, 43, N'G', 200, N'', 12, 180, N'30', 3.5, 5, N'1.5', N'8', N'0', N'', N'1', N'1', N'0', N'0', 370, 15, N'', N'', 35, 12, N'1', N'4', 20, N'', N'', N'', 2, N'', NULL, N'Sugar, Enriched Bleached Wheat Flour (Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid), Vegetable Oil Shortening (Partially Hydrogenated Soybean Oil, Propylene Glycol Mono- and Diesters of Fats, Mono- and Diglycerides), Cocoa Powder processed with Alkali, Dextrose, Leavening (Sodium Bicarbonate, Dicalcium Phosphate, Sodium Aluminum Phosphate, Monocalcium Phosphate). Contains 2% or less of: Modified Food Starch, Wheat Starch, Polyglycerol Esters of Fatty Acids, Salt, Partially Hydrogenated Soybean Oil, Cellulose Gum, Xanthan Gum, Maltodextrin, Artificial Flavors.', N'', N'Contains Wheat.', N'', N'', 6, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (120, N'', N'', N'644209410606', 58, 64, 8.7100, 53, N'Spice Cake', 2, 18.25, 4, 517, NULL, N'', N'', N'OU', N'', N'', 1.5, 4, 43, N'G', 200, N'', 12, 180, N'25', 3, 5, N'1', N'5', N'0', N'', N'1', N'1', N'0', N'0', 280, 12, N'', N'', 36, 12, N'', N'', 20, N'', N'', N'', 2, N'', NULL, N'Sugar, Enriched Bleached Wheat Flour (Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid), Vegetable Oil Shortening (Partially Hydrogenated Soybean Oil, Propylene Glycol Mono- and Diesters of Fats, Mono- and Diglycerides) Leavening (Sodium Bicarbonate, Dicalcium Phosphate, Sodium Aluminum Phosphate, Monocalcium Phosphate), Contains 2% or less of: Wheat Starch, Spices (Cinnamon, Allspice, Coriander, Ginger, Nutmeg), Salt, Dextrose, Polyglycerol Esters of Fatty Acids, Colored with (Caramel Color, Yellow 5 Lake), Partially Hydrogenated Soybean Oil, Cellulose Gum, Modified Cornstarch, Natural and Artificial Flavor, Xanthan Gum, Dextrin, Artificial Flavors, Maltodextrin, Triethyl Citrate, Acetic Acid.', N'', N'Contains Wheat.', N'', N'', 8, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (121, N'', N'', N'644209410705', 58, 64, 3.2300, 53, N'Fudge Marble', 2, 18.25, 4, 517, NULL, N'', N'', N'OU', N'', N'', 1.5, 4, 43, N'G', 200, N'', 12, 180, N'30', 3.5, 5, N'1.5', N'8', N'0', N'', N'1', N'1', N'0', N'0', 280, 12, N'', N'', 35, 12, N'-1', N'2', 20, N'', N'', N'', 2, N'', NULL, N'Sugar, Enriched Bleached Wheat Flour (Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid), Fudge Marble Packet (Sugar, Cocoa Powder processed with Alkali, Bleached Wheat Flour, Leavening [Sodium Bicarbonate, Monocalcium Phosphate]), Vegetable Oil Shortening (Partially Hydrogenated Soybean Oil, Propylene Glycol Mono- and Diesters of Fats, Mono- and Diglycerides), Leavening (Sodium Bicarbonate, Dicalcium Phosphate, Sodium Aluminum Phosphate, Monocalcium Phosphate). Contains 2% or less of: Wheat Starch, Salt, Dextrose, Polyglycerol Esters of Fatty Acids, Partially Hydrogenated Soybean Oil, Cellulose Gum, Artificial Flavors, Xanthan Gum, Maltodextrin, Modified Cornstarch, Colored with (Yellow 5 Lake, Red 40 Lake).', N'', N'Contains Wheat.', N'', N'', 8, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (122, N'', N'', N'644209411009', 58, 64, 1.8500, 53, N'Lemon Supreme', 2, 18.25, 4, 517, NULL, N'', N'', N'OU', N'', N'', 1.5, 4, 43, N'G', 200, N'', 12, 180, N'25', 3, 5, N'1', N'5', N'0', N'', N'1', N'1', N'0', N'0', 280, 12, N'', N'', 36, 12, N'', N'', 20, N'', N'', N'', 2, N'', NULL, N'Sugar, Enriched Bleached Wheat Flour (Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid), Vegetable Oil Shortening (Partially Hydrogenated Soybean Oil, Propylene Glycol Mono- and Diesters of Fats, Mono- and Diglycerides), Leavening (Sodium Bicarbonate, Dicalcium Phosphate, Sodium Aluminum Phosphate, Monocalcium Phosphate), Dextrose, Wheat Starch, contain 2% or less of: Salt, Polyglycerol Esters of Fatty Acids, Maltodextrin, Natural and Artificial Flavors, Gum Arabic, Partially Hydrogenated Soybean Oil, Cellulose Gum, Citric Acid, Xanthan Gum, Colored with (Yellow 5 Lake ).', N'', N'Contains Wheat.', N'', N'', 8, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (123, N'', N'', N'644209411504', 58, 64, 10.9300, 53, N'Butter Recipe Fudge', 2, 18.5, 4, 524, NULL, N'', N'', N'OU', N'', N'', 1.85, 4, 52, N'G', 200, N'', 10, 230, N'45', 5, 8, N'2', N'10', N'0.5', N'', N'1', N'1.5', N'0', N'0', 270, 11, N'', N'', 43, 14, N'1', N'4', 28, N'', N'', N'', 2, N'', NULL, N'Sugar, Enriched Bleached Wheat Flour (Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid), Vegetable Oil Shortening (Partially Hydrogenated Soybean Oil, Propylene Glycol Mono- and Diesters of Fats, Mono- and Diglycerides), Dextrose, Cocoa Powder processed with Alkali, Contains 2% or less of: Leavening (Sodium Bicarbonate, Monocalcium Phosphate Monohydrate, Sodium Aluminum Phosphate), Cornstarch, Salt, Modified Food Starch, Partially Hydrogenated Soybean Oil, Maltodextrin, Artificial Flavors.', N'', N'Contains Wheat.', N'0', N'0', 2, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (124, N'', N'', N'644209411801', 58, 64, 3.1200, 53, N'Strawberry Supreme', 2, 18.25, 4, 517, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 43, N'G', 200, N'', 12, 180, N'25', 3, 5, N'1', N'5', N'0.5', N'', N'0.5', N'1', N'0', N'0', 280, 12, N'', N'', 36, 12, N'', N'', 20, N'', N'', N'', 2, N'', NULL, N'Sugar, Enriched Bleached Wheat Flour (Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid), Vegetable Oil Shortening (Partially Hydrogenated Soybean and Cottonseed Oils, Propylene Glycol Mono- and Diesters of Fats, Mono- and Diglycerides, Polyglycerol Esters of Fatty Acids, Soy Lecithin), Artificial Strawberry Flavored Pieces (Sugar, Corn Syrup, Corn Cereal, Modified Food Starch [Corn and/or Wheat], Partially Hydrogenated Vegetable Oil [Cottonseed and/or Soybean], Citric Acid, Artificial Flavor, Confectioner''s Glaze, colored with Red 40 and Blue 2), Leavening (Sodium Bicarbonate, Dicalcium Phosphate, Sodium Aluminum Phosphate, Monocalcium Phosphate), Contains 2% or less of: Wheat Starch, Emulsifier (Propylene Glycol Mono- and Diesters of Fats and Fatty Acids, Mono- and Diglycerides, Soy Lecithin, Citric Acid to protect flavor), Polyglycerol Esters of Fatty Acids, Partially Hydrogenated Soybean Oil, Salt, Dextrose, Cellulose Gum, Citric Acid, Xanthan Gum, Artificial Flavors, Maltodextrin, Tapioca Dextrin, Gum Arabic, Artificial Strawberry Flavor, colored with (Red 40 Lake), Dextrin, Nonfat Dry Milk.', N'', N'Contains Wheat, Soy and Milk. Manufactured on equipment that also processes Tree Nuts (Pecans).', N'', N'', 8, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (125, N'', N'', N'644209412808', 58, 64, 4.6600, 53, N'French Vanilla', 2, 18.25, 4, 517, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 43, N'G', 200, N'', 12, 180, N'30', 3.5, 5, N'1.5', N'8', N'0.5', N'', N'0', N'1', N'0', N'0', 280, 12, N'', N'', 34, 11, N'', N'', 19, N'', N'', N'', 1, N'', NULL, N'Sugar, Enriched Bleached Wheat Flour (Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid), Vegetable Oil Shortening (Partially Hydrogenated Soybean and Cottonseed Oils, Propylene Glycol Mono- and Diesters of Fats, Mono- and Diglycerides, Polyglycerol Esters of Fatty Acids, Soy Lecithin), Leavening (Sodium Bicarbonate, Sodium Aluminum Phosphate, Dicalcium Phosphate, Monocalcium Phosphate), Contains 2% or less of: Wheat Starch, Emulsifier (Propylene Glycol Mono- and Diesters of Fats and Fatty Acids, Mono- and Diglycerides, Soy Lecithin, Citric Acid to protect flavor), Salt, Dextrose, Cornstarch, Artificial Flavors, Butter Acids and Esters [Milk], Cellulose Gum, Xanthan Gum.', N'', N'Contains Wheat, Milk and Soy. Manufactured on equipment that also processes Tree Nuts.', N'', N'', 8, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (126, N'', N'', N'655956055514', 75, 39, 7.3500, 7, N'Chocolate Chip - Theater Pack', 2, 4, 4, 113, NULL, N'', N'', N'', N'', N'', 1.4, 4, 40, N'G', 200, N'', 3, 220, N'130', 14, 22, N'7', N'36', N'0', N'', N'', N'', N'0', N'0', 75, 7, N'', N'', 22, 7, N'0', N'', 17, N'', N'', N'', 1, N'', NULL, N'Milk Chocolate [Sugar, Cocoa Butter, Whole Milk, Chocolate Liquor, Lactose, Soy Lecithin (an Emulsifier) and Vanillin (an Artificial Flavor)], Chocolate Chip Cookie Dough [Wheat Flour, Sugar, Partially Hydrogenated Vegetable Oil (includes Soybean and Cottonseed Oil), Brown Sugar, Chocolate Morsels (Sugar, Chocolate Liquor, Cocoa Butter, Soy Lecithin (an Emulsifier)), Glycerine, Natural Flavors, Salt, Sodium Bicarbonate], and Resinous Confectioner''s Glaze (Shellac), Corn Syrup, Gum Arabic, Tapioca Dextrin, Peanut Traces.', N'', N'Product is pacakged in a facility that also packages products containing Peanut and other Nuts, Milk Solids, Eggs, Wheat and Soy Protein.', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (127, N'', N'', N'656488007118', 31, 91, 9.3000, 5, N'Spicy Pecan Smoked', 17, 2, 4, 57, NULL, N'', N'', N'USDA Inspected', N'', N'', NULL, NULL, NULL, N'', NULL, N'', NULL, NULL, N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', NULL, NULL, N'', N'', NULL, NULL, N'', N'', NULL, N'', N'', N'', NULL, N'', NULL, N'Beef, Water, Salt, Sugar, MSG, Granulated Garlic, Chile Powder, Cayenne Pepper, Soy Sauce (Wheat, Soybean Oil, Salt, Maltodextrin), Black Pepper, Sodium Nitrite.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (128, N'', N'', N'671124000117', 5, 10, 10.0400, 60, N'Zesty Marinara', 11, 26, 4, 737, NULL, N'', N'', N'', N'', N'', 4, 4, 113, N'G', 200, N'', 6.5, 120, N'80', 9, 14, N'1.5', N'7', N'0', N'', N'', N'', N'0', N'0', 215, 9, N'', N'', 7, 2, N'1', N'4', 2, N'', N'', N'', 2, N'', NULL, N'Tomatoes (Vine Ripened Fresh Pear Tomatoes, Salt, Citric Acid), First Cold Press Extra Virgin Olive Oil, Garlic, Natural Spices, Sugar, Salt.', N'Must Refrigerate after Opening', N'', N'24', N'38', 6, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (129, N'', N'', N'671124000216', 5, 10, 3.4800, 60, N'Vino Parmigiano', 11, 26, 4, 737, NULL, N'', N'', N'', N'', N'', 4, 4, 113, N'G', 200, N'', 6.5, 130, N'80', 9, 14, N'1.5', N'7', N'0', N'', N'', N'', N'0', N'0', 350, 14, N'', N'', 10, 3, N'2', N'8', 2, N'', N'', N'', 2, N'', NULL, N'Tomatoes (Vine Ripened Fresh Pear Tomatoes, Salt, Citric Acid), First Cold Press Extra Virgin Olive Oil, Parmesan Cheese, Cabernet Sauvignon Wine (Sulfites), Garlic, Natural Spices, Sugar, Salt.', N'Must Refrigerate after Opening', N'', N'24', N'38', 6, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (130, N'', N'', N'671124000315', 5, 10, 2.2400, 60, N'Diavolo Puttanesca', 11, 26, 4, 737, NULL, N'', N'', N'', N'', N'', 4, 4, 113, N'G', 200, N'', 6.5, 130, N'80', 9, 14, N'1.5', N'7', N'0', N'', N'', N'', N'0', N'0', 460, 19, N'', N'', 10, 3, N'2', N'8', 2, N'', N'', N'', 2, N'', NULL, N'Tomatoes (Vine Ripened Fresh Pear Tomatoes, Salt, Citric Acid), First Cold Press Extra Virgin Olive Oil, Garlic, Anchovy Paste from Fresh Pacific Anchovies (Malto-Dextrin, Anchovy Extract, Salt), Capers, Onions, Natural Spices, Sugar.', N'Must Refrigerate after Opening', N'', N'24', N'38', 6, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (131, N'', N'', N'671124000414', 5, 10, 1.0800, 60, N'Pesto Marinara', 11, 26, 4, 737, NULL, N'', N'', N'', N'', N'', 4, 4, 113, N'G', 200, N'', 6.5, 130, N'80', 9, 14, N'1.5', N'7', N'0', N'', N'', N'', N'0', N'0', 350, 14, N'', N'', 7, 2, N'1', N'4', 4, N'', N'', N'', 2, N'', NULL, N'Tomatoes (Vine Ripened Fresh Pear Tomatoes, Salt, Citric Acid), Pesto (Parmesan Cheese, Basil, Garlic, Pine Nuts), First Press Extra Virgin Olive Oil, Sugar, Garlic, Salt, Natural Spices.', N'Must Refrigerate after Opening', N'', N'10', N'30', 6, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (132, N'', N'', N'671124000513', 5, 10, 4.9900, 60, N'Roasted 3 Bell Pepper', 11, 26, 4, 737, NULL, N'', N'', N'', N'', N'', 4, 4, 113, N'G', 200, N'', 6.5, 270, N'170', 19, 29, N'2.5', N'13', N'0', N'', N'', N'', N'0', N'0', 350, 14, N'', N'', 6, 2, N'1', N'4', 4, N'', N'', N'', 1, N'', NULL, N'Tomatoes (Vine Ripened Fresh Pear Tomatoes, Salt, Citric Acid), First Cold Press Extra Virgin Olive Oil, Roasted Red Peppers, Roasted Green Peppers, Roasted Yellow Peppers, Sugar, Garlic, Salt, Natural Spices.', N'Must Refrigerate after Opening', N'', N'10', N'30', 6, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (133, N'', N'', N'671124000612', 5, 10, 4.1400, 60, N'Artichoke Portobello', 11, 26, 4, 737, NULL, N'', N'', N'', N'', N'', 4, 4, 113, N'G', 200, N'', 6.5, 270, N'220', 24, 37, N'4.5', N'23', N'0', N'', N'', N'', N'0', N'0', 460, 19, N'', N'', 7, 2, N'4', N'4', 4, N'', N'', N'', 5, N'', NULL, N'Tomatoes (Vine Ripened Fresh Pear Tomatoes, Salt, Citric Acid), First Cold Press Extra Virgin Olive Oil, Garlic, Mushrooms, Black Olives, Sugar, Artichoke Hearts, Garlic, Salt, Natural Spices.', N'Must Refrigerate after Opening', N'', N'10', N'30', 6, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (134, N'', N'', N'681131858298', 61, 5, 2.2600, 61, N'100% Pure', 21, 35, 3, 15.88, NULL, N'', N'', N'OU', N'', N'Spanish Translations', 0.5, 4, 14, N'G', 200, N'', 1136, 130, N'130', 14, 22, N'2.5', N'13', N'0', N'', N'4', N'7', N'0', N'0', 0, 0, N'', N'', 0, 0, N'0', N'0', 0, N'', N'', N'', 0, N'', NULL, N'Peanut Oil with TBHQ and Citric Acid added as Preservatives and Dimethylpolysiloxane added as an anti-foaming agent.', N'', N'Peanut Oil is derived from Peanuts.', N'0', N'0', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (135, N'', N'', N'681366196219', 21, 67, 5.4900, 36, N'Hot', 11, 16, 1, 453, NULL, N'', N'', N'', N'', N'', 2, NULL, 30, N'G', 200, N'', 15, 5, N'', 1, 1, N'0', N'0', N'0', N'0', N'', N'', N'0', N'0', 250, 10, N'', N'', 5, 2, N'1', N'2', 3, N'', N'', N'', 1, N'', NULL, N'Roasted Green Chiles, Peeled Tomatoes, Water, Onion, Soy Oil, Salt, Garlic, Calcium Chloride, Citric Acid.', N'Refrigerate after Opening', N'', N'4', N'80', 0, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (136, N'', N'', N'681366196288', 21, 67, 2.5600, 36, N'Medium', 11, 16, 1, 453, NULL, N'', N'', N'', N'', N'', 2, NULL, 30, N'G', 200, N'', 15, 5, N'', 1, 1, N'0', N'0', N'0', N'0', N'', N'', N'0', N'0', 250, 10, N'', N'', 5, 2, N'1', N'2', 3, N'', N'', N'', 1, N'', NULL, N'Roasted Green Chiles, Peeled Tomatoes, Water, Onion, Soy Oil, Salt, Garlic, Calcium Chloride, Citric Acid.', N'Refrigerate after Opening', N'', N'4', N'80', 0, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (137, N'', N'', N'681366196370', 21, 67, 7.7200, 36, N'Mild', 11, 16, 1, 453, NULL, N'', N'', N'', N'', N'', 2, NULL, 30, N'G', 200, N'', 15, 5, N'', 1, 1, N'0', N'0', N'0', N'0', N'', N'', N'0', N'0', 250, 10, N'', N'', 5, 2, N'1', N'2', 3, N'', N'', N'', 1, N'', NULL, N'Roasted Green Chiles, Peeled Tomatoes, Water, Onion, Soy Oil, Salt, Garlic, Calcium Chloride, Citric Acid.', N'Refrigerate after Opening', N'', N'4', N'80', 0, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (138, N'', N'', N'681366196431', 21, 67, 11.9700, 35, N'Mild', 11, 16, 1, 453, NULL, N'', N'', N'', N'', N'', 2, NULL, 30, N'G', 200, N'', 15, 5, N'', 0, 0, N'0', N'0', N'0', N'0', N'', N'', N'0', N'0', 170, 7, N'', N'', 2, 1, N'0', N'0', 1, N'', N'', N'', 0, N'', NULL, N'Tomatoes (Peeled Tomatoes with Juice, Calcium Chloride, Citric Acid), Roasted Anaheim Green Chiles, Jalapeno Peppers, Salt, Garlic.', N'Refrigerate after Opening', N'', N'2', N'10', 2, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (139, N'', N'', N'706010115887', 3, 6, 13.5200, 60, N'Mushroom & Garlic', 11, 24, 4, 680, NULL, N'', N'', N'OU', N'', N'', 4.4, 4, 125, N'G', 200, N'', 5, 70, N'20', 2, 3, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 450, 19, N'', N'', 12, 4, N'2', N'8', 6, N'', N'', N'', 3, N'', NULL, N'Tomato Puree (Water, Tomato Paste), Diced Tomatoes, Mushrooms, Onions, Garlic, Sugar, Salt, Olive Oil, Sunflower Oil, Parsley, Basil, Citric Acid, Oregano, Black Pepper.', N'Refrigerate Unused Portion', N'', N'4', N'15', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (140, N'', N'', N'715141113570', 19, 66, 10.3300, 33, N'', 9, 36, 4, 1.03, NULL, N'', N'', N'OU', N'', N'', 1.75, 4, 50, N'G', 200, N'1', 18, 70, N'35', 4, 6, N'1', N'6', N'0', N'', N'', N'', N'175', N'58', 65, 3, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 6, N'13', NULL, N'Grade A Large Eggs.', N'Keep Refrigerated', N'', N'6', N'0', 2, N'4', NULL, N'25', N'', N'2', N'15', N'', N'', NULL, N'4', NULL, N'8', N'', N'', 8, 40, N'', N'4', N'', N'', N'', N'', N'', N'', N'', N'6', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (141, N'', N'', N'715141503494', 20, 66, 0.4400, 33, N'', 9, 24, 4, 681, NULL, N'', N'', N'OU', N'', N'', 1.75, 4, 50, N'G', 200, N'', 12, 70, N'35', 4, 6, N'1', N'6', N'0', N'', N'', N'', N'175', N'58', 65, 2, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 6, N'13', NULL, N'Grade A Eggs.', N'Keep Refrigerated.', N'', N'6', N'0', 2, N'4', NULL, N'25', N'', N'2', N'15', N'', N'', NULL, N'4', NULL, N'8', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'4', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (142, N'', N'', N'715141514643', 20, 66, 0.3900, 32, N'', 9, 24, 4, 681, NULL, N'', N'', N'', N'', N'', 1.75, 4, 50, N'G', 200, N'', 12, 70, N'35', 4, 6, N'1', N'6', N'0', N'0', N'', N'', N'170', N'57', 65, 2, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 6, N'13', NULL, N'Grade A Brown Eggs.', N'Keep Refrigerated.', N'', N'6', N'0', 2, N'4', NULL, N'25', N'', N'2', N'15', N'', N'', NULL, N'4', NULL, N'8', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'6', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (143, N'', N'', N'715141729283', 20, 66, 9.5400, 31, N'', 9, 27, 4, 766, NULL, N'', N'', N'OU', N'', N'', 2, 4, 56, N'G', 200, N'1', 12, 80, N'40', 4.5, 7, N'1', N'7', N'0', N'', N'', N'', N'200', N'67', 75, 3, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 7, N'14', NULL, N'Grade A Extra Large Eggs.', N'Keep Refrigerated', N'', N'8', N'0', 2, N'4', NULL, N'30', N'', N'2', N'15', N'', N'', NULL, N'4', NULL, N'10', N'', N'', 10, 45, N'', N'4', N'', N'', N'', N'', N'', N'', N'', N'6', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (144, N'', N'', N'739510100305', 71, 166, 5.9800, 22, N'Dragonfruit', 10, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 110, N'0', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 15, 1, N'', N'', 30, 10, N'', N'', 28, N'', N'', N'', 0, N'', NULL, N'Filtered Water, High Fructose Corn Syrup, Citric Acid, Grape Juice Concentrate (Color), Natural Flavor, Pectin, Caramel Color, Fruit Extract (Color), Ascorbic Acid (Vitamin C), Panax Ginseng Root Extract, Gingko Bilboa, Leaf Extract, Guarana (Paullinia Cupana) Seed Extract.', N'Refrigerate after Opening', N'', N'', N'100', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'10', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (145, N'', N'', N'739510100701', 71, 169, 3.0200, 22, N'Strawberry Daquiri', 10, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 120, N'0', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 20, 1, N'', N'', 32, 10, N'', N'', 31, N'', N'', N'', 0, N'', NULL, N'Filtered Water, High Fructose Corn Syrup, Skim Milk, Sugar, Cream, Pectin, Citric Acid, Natural Flavor, Cochineal (Color), Ascorbic Acid (Vitamin C), Lactic Acid, Gum Arabic, Aloe Barbadendsis Leaf Extract, Strawberry Juice Concentrate, Niacin, Calcium Pantothenate, Alpha-Tocopheryl Acetate, Glycerol Ester of Wood Rosin, Pyridoxine Hydrochloride, Retinol Palmitate, Cyanocobalamin.', N'Refrigerate after Opening', N'', N'10', N'100', NULL, N'', NULL, N'10', N'', N'', N'', N'20', N'', NULL, N'20', NULL, N'20', N'', N'20', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (146, N'', N'', N'739510203204', 71, 165, 4.2300, 22, N'Cherry Citrus', 10, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 110, N'0', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 25, 1, N'', N'', 30, 10, N'', N'', 30, N'', N'', N'', 0, N'', NULL, N'Filtered Water, High Fructose Corn Syrup, Grape Juice Concentrate, Orange Juice Concentrate, Citric Acid, Cherry Juice Concentrate, Natural Flavor (Contains Milk, Soy), Ascorbic Acid (Vitamin C), Pectin, Carmine (Color), Caffeine, Maltodextrin, Taurine, Panax Ginseng Root Extract, Elderberry Juice (Color), Guarana (Paullinia Cupana) Seed Extract, Caramel Color.', N'Refrigerate after Opening', N'', N'', N'100', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (147, N'', N'', N'739510400009', 71, 167, 7.9000, 22, N'Orange-Carrot', 10, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 90, N'0', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 10, -1, N'', N'', 24, 8, N'', N'', 23, N'', N'', N'', 0, N'', NULL, N'Filtered Water, High Fructose Corn Syrup, Citric Acid, Orange Juice Concentrate, Carrot Juice Concentrate, Lemon Juice Concentrate, Citric Acid, Calcium Lactate Pentahydrate, Ascorbic Acid (Vitamin C), Natural Flavor, L-Carnitine, Alpha-Tocopheryl Acetate, Caramel Color, Guar Gum, Pectin, Carob Bean Gum, Beta-Carotene (Color), Chromium Picolinate.', N'Refrigerate after Opening', N'', N'100', N'100', 4, N'', NULL, N'25', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'30', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (148, N'', N'', N'739510800106', 71, 164, 12.4100, 22, N'Green Tea', 10, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 90, N'0', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 10, -1, N'', N'', 23, 8, N'', N'', 23, N'', N'', N'', 0, N'', NULL, N'Filtered Water, High Fructose Corn Syrup, Citric Acid, Natural Flavor, Ascorbic Acid (Vitamin C), Green Tea Solids, Caramel Color, Echinacea Purpurea Flower Extract, Guarana (Paullinia Cupana) Seed Extract, Panax Ginseng Root Extract, Ginkgo Bilboa Leaf Extract.', N'Refrigerate after Opening', N'', N'', N'100', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (149, N'', N'', N'739510900103', 71, 170, 4.1400, 22, N'Fruit Punch', 10, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 120, N'0', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 15, 1, N'', N'', 31, 10, N'', N'', 30, N'', N'', N'', 0, N'', NULL, N'Filtered Water, High Fructose Corn Syrup, Citric Acid, Aronia Juice Concentrate, Grape Juice Concentrate (Color), Pectin, Caramel Color, Ascorbic Acid (Vitamin C), Tartaric Acid, Natural Flavor, Caffeine, Taurine, L-Proline, Gum Arabic, Glycerol Ester of Wood Rosin, Guarana (Paullinia Cupana) Seed Extract.', N'Refrigerate after Opening', N'', N'', N'100', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (150, N'', N'', N'739510900400', 71, 168, 2.3800, 22, N'Pina Colada', 10, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 120, N'0', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 50, 2, N'', N'', 32, 11, N'', N'', 31, N'', N'', N'', 0, N'', NULL, N'Filtered Water, High Fructose Corn Syrup, Skim Milk, Sugar, Cream, Pectin, Natural Flavor, Lactic Acid, Ascorbic Acid (Vitamin C), Salt, Zinc Methionine Sulfate, Echinacea Purpurea Flower Extract.', N'Refrigerate after Opening', N'', N'', N'100', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'10', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (151, N'', N'', N'856856001018', 50, 133, 1.4400, 30, N'Spicy Chipotle & Lime', 17, 5, 4, 141.6, NULL, N'', N'', N'', N'', N'Premium Popped Corn (non-GMO)', 1, 4, 28, N'G', 200, N'', 5, 143, N'65', 7, 11, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 91, 4, N'', N'', 17, 6, N'3', N'12', 0, N'', N'', N'0', 2, N'5', NULL, N'Premium Popped Corn, Pure Corn Oil, Maltodextrin (IP), Dextrose, Salt, Roasted Chipotle Pepper Powder, Natural Flavors, Corn Syrup Solids, Garlic Powder, Onion Powder, Silicon Dioxide to prevent caking, Spices, Citric Acid, Caramel Color.', N'', N'', N'1', N'0', 0, N'3', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (152, N'', N'', N'856856001025', 50, 133, 6.9100, 30, N'Romano & Pesto', 17, 5, 4, 141.6, NULL, N'', N'', N'', N'', N'Premium Popped Corn (non-GMO)', 1, 4, 28, N'G', 200, N'', 5, 138, N'62', 6, 11, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 102, 4, N'', N'', 16, 5, N'3', N'12', 0, N'', N'', N'0', 3, N'6', NULL, N'Premium Popped Corn, Pure Corn Oil, Romano Cheese, Garlic, Dill Weed, California Basil, Minced Green Onion, Chives, Tarragon, Chervil, Parsley, Ground White Pepper, Salt.', N'', N'', N'3', N'2', 3, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (153, N'', N'', N'856856001032', 50, 133, 13.2900, 30, N'Smoked Gouda', 17, 5, 4, 141.6, NULL, N'', N'', N'', N'', N'Premium Popped Corn (non-GMO)', 1, 4, 28, N'G', 200, N'', 5, 132, N'63', 7, 11, N'1', N'6', N'0', N'', N'', N'', N'0', N'0', 198, 8, N'', N'', 14, 5, N'3', N'11', 0, N'', N'', N'0', 3, N'6', NULL, N'Premium Popped Corn, Pure Corn Oil, Cheddar Cheese ([Milk, Salt, Cheese Cultures, Enzymes], Whey, Buttermilk, Salt, Disodium Phosphate), Romano Cheese ([Cow''s Milk, Salt, Cheese Cultures, Enzymes]), Gouda Cheese ([Milk, Salt, Cheese Cultures, Enzymes], Whey, Disodium Phosphate, Lactic Acid), Salt, Garlic, Hickory Smoke Powder (Maltodextrin, Natural Hickory Smoke Flavor, Silicon Dioxide to prevent caking), Spices.', N'', N'', N'1', N'0', 2, N'3', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (154, N'', N'', N'856856001049', 50, 133, 5.1700, 30, N'Sun-Dried Tomato & Parmesan', 17, 5, 4, 141.6, NULL, N'', N'', N'', N'', N'Premium Popped Corn (non-GMO)', 1, 4, 28, N'G', 200, N'', 5, 142, N'66', 7, 11, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 194, 8, N'', N'', 16, 5, N'3', N'12', 0, N'', N'', N'0', 3, N'5', NULL, N'Premium Popped Corn, Pure Corn Oil, Salt, Dextrose, Parmesan Cheese (Pasteurized Milk, Cultures, Salt and Enzymes), Buttermilk, Whey Powder, Non-Fat Dry Milk, Garlic Powder, Tomato Powder, Onion Powder, Silicon Dioxide to prevent caking, Yeast Extract, Citric Acid, Paprika Extractives.', N'', N'', N'1', N'0', 1, N'3', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (155, N'', N'', N'856856001056', 50, 133, 5.8400, 30, N'White Cheddar', 17, 5, 4, 141.6, NULL, N'', N'', N'', N'', N'Premium Popped Corn (non-GMO)', 1, 4, 28, N'G', 200, N'', 5, 142, N'65', 7, 11, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 182, 8, N'', N'', 17, 6, N'3', N'12', 0, N'', N'', N'0', 3, N'6', NULL, N'Premium Popped Corn, Pure Corn Oil, Dextrose, Buttermilk, Cheddar Cheese (Pasteurized Milk, Cultures, Salt and Enzymes), Salt, Whey Powder, natural Flavors, Onion Powder, Garlic Powder, Citric Acid, Silicon Dioxide to prevent caking.', N'', N'', N'1', N'0', 2, N'3', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (156, N'', N'', N'856856001063', 50, 133, 13.7300, 30, N'Asiago & Cracked Pepper', 17, 5, 4, 141.6, NULL, N'', N'', N'', N'', N'Premium Popped Corn (non-GMO)', 1, 4, 28, N'G', 200, N'', 5, 137, N'57', 6, 10, N'1', N'6', N'0', N'', N'', N'', N'0', N'0', 95, 4, N'', N'', 17, 6, N'3', N'13', 0, N'', N'', N'0', 3, N'6', NULL, N'Premium Popped Corn, Pure Corn Oil, Parmesan Cheese (Milk, Salt, Cheese Cultures, Enzymes, Whey, Disodium Phosphate, Lactic Acid), Natural Asiago Cheese Flavor, Black Pepper, Cheddar Cheese (Cultured Milk, Salt, Enzymes, Whey, Buttermilk, Maltodextrin, Disodium Phosphate), Salt, Garlic.', N'', N'', N'1', N'0', 2, N'3', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (157, N'', N'', N'856856001070', 50, 133, 5.1300, 30, N'Caprese', 17, 5, 4, 141.6, NULL, N'', N'', N'', N'', N'Premium Popped Corn (non-GMO)', 1, 4, 28, N'G', 200, N'', 5, 138, N'61', 7, 11, N'1', N'6', N'0', N'', N'', N'', N'0', N'0', 142, 8, N'', N'', 15, 5, N'3', N'11', 0, N'', N'', N'0', 3, N'6', NULL, N'Premium Popped Corn, Pure Corn Oil, Parmesan Cheese (Milk, Salt, Cheese Cultures, Enzymes, Whey, Disodium Phosphate, Lactic Acid), Mozzarella Cheese (Pasteurized Part Skim Milk, Cheese Cultures, Salt, Enzymes, Whey, Sodium Phosphate, Lactic Acid), Tomato, Garlic, Salt, Basil, Black Pepper.', N'', N'', N'4', N'2', 4, N'3', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (158, N'', N'', N'856856001117', 50, 133, 2.3800, 30, N'Spicy Chipotle & Lime', 17, 1, 4, 28.4, NULL, N'', N'', N'', N'', N'Premium Popped Corn (non-GMO)', 1, 4, 28, N'G', 200, N'', 1, 143, N'65', 7, 11, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 91, 4, N'', N'', 17, 6, N'3', N'12', 0, N'', N'', N'0', 2, N'5', NULL, N'Premium Popped Corn, Pure Corn Oil, Maltodextrin (IP), Dextrose, Salt, Roasted Chipotle Pepper Powder, Natural Flavors, Corn Syrup Solids, Garlic Powder, Onion Powder, Silicon Dioxide to prevent caking, Spices, Citric Acid, Caramel Color.', N'', N'', N'1', N'0', 0, N'3', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (159, N'', N'', N'856856001131', 50, 133, 7.2000, 30, N'Smoked Gouda', 17, 1, 4, 28.4, NULL, N'', N'', N'', N'', N'Premium Popped Corn (non-GMO)', 1, 4, 28, N'G', 200, N'', 1, 132, N'63', 7, 11, N'1', N'6', N'0', N'', N'', N'', N'0', N'0', 198, 8, N'', N'', 14, 5, N'3', N'11', 0, N'', N'', N'0', 3, N'6', NULL, N'Premium Popped Corn, Pure Corn Oil, Cheddar Cheese ([Milk, Salt, Cheese Cultures, Enzymes], Whey, Buttermilk, Salt, Disodium Phosphate), Romano Cheese ([Cow''s Milk, Salt, Cheese Cultures, Enzymes]), Gouda Cheese ([Milk, Salt, Cheese Cultures, Enzymes], Whey, Disodium Phosphate, Lactic Acid), Salt, Garlic, Hickory Smoke Powder (Maltodextrin, Natural Hickory Smoke Flavor, Silicon Dioxide to prevent caking), Spices.', N'', N'', N'1', N'0', 2, N'3', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (160, N'', N'', N'856856001148', 50, 133, 12.4700, 30, N'Sun-Dried Tomato & Parmesan', 17, 1, 4, 28.4, NULL, N'', N'', N'', N'', N'Premium Popped Corn (non-GMO)', 1, 4, 28, N'G', 200, N'', 1, 142, N'66', 7, 11, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 194, 8, N'', N'', 16, 5, N'3', N'12', 0, N'', N'', N'0', 3, N'5', NULL, N'Premium Popped Corn, Pure Corn Oil, Salt, Dextrose, Parmesan Cheese (Pasteurized Milk, Cultures, Salt and Enzymes), Buttermilk, Whey Powder, Non-Fat Dry Milk, Garlic Powder, Tomato Powder, Onion Powder, Silicon Dioxide to prevent caking, Yeast Extract, Citric Acid, Paprika Extractives.', N'', N'', N'1', N'0', 1, N'3', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (161, N'', N'', N'856856001155', 50, 133, 10.2300, 30, N'White Cheddar', 17, 1, 4, 28.4, NULL, N'', N'', N'', N'', N'Premium Popped Corn (non-GMO)', 1, 4, 28, N'G', 200, N'', 1, 142, N'65', 7, 11, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 182, 8, N'', N'', 17, 6, N'3', N'12', 0, N'', N'', N'0', 3, N'6', NULL, N'Premium Popped Corn, Pure Corn Oil, Dextrose, Buttermilk, Cheddar Cheese (Pasteurized Milk, Cultures, Salt and Enzymes), Salt, Whey Powder, natural Flavors, Onion Powder, Garlic Powder, Citric Acid, Silicon Dioxide to prevent caking.', N'', N'', N'1', N'0', 2, N'3', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (162, N'', N'', N'41364080536 ', 1, 171, 10.0800, 7, N'Strikin'' Strawberry', 17, 2, 4, 57, NULL, N'', N'', N'', N'', N'', 2, 4, 57, N'G', 200, N'', 1, 210, N'5', 1, 1, N'0.5', N'3', N'0', N'', N'', N'', N'0', N'0', 10, 0, N'', N'', 49, 16, N'1', N'4', 26, N'', N'', N'', 1, N'', NULL, N'Corn Syrup, Wheat Flour, Sugar, Citric Acid, Malic Acid, Tartaric Acid, Glyceryl Monostearate, Glycerine, Artificial Flavor, Color added (including Red 40).', N'', N'Contains Wheat ingredients.', N'0', N'0', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (163, N'', N'', N'41467000066 ', 68, 161, 0.4000, 33, N'', 9, 21.6, 4, 600, NULL, N'', N'', N'', N'', N'', 1.8, 4, 50, N'G', 200, N'', 12, 70, N'40', 4.5, 7, N'1.5', N'8', N'0', N'', N'', N'', N'215', N'71', 65, 3, N'', N'', -1, 0, N'', N'', NULL, N'', N'', N'', 6, N'10', NULL, N'Grade A Large Eggs.', N'Keep Refrigerated', N'', N'6', N'0', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (164, N'', N'', N'41467000486 ', 68, 161, 13.9800, 1, N'', 21, 1, 2, 3.78, NULL, N'', N'', N'K-D', N'', N'', 8, 1, 240, N'ML', 188, N'', 16, 120, N'45', 5, 8, N'3', N'15', N'0', N'', N'', N'', N'20', N'7', 125, 5, N'', N'', 12, 4, N'0', N'0', 12, N'', N'', N'', 8, N'16', NULL, N'Reduced Fat Milk, Vitamin A Palmitate, and Vitamin D3.', N'Keep Refrigerated', N'', N'10', N'4', 30, N'0', 25, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (165, N'', N'', N'41467000547 ', 68, 161, 1.6900, 59, N'', 21, 0.5, 2, 1.89, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 8, 120, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'420', N'12', 29, 10, N'', N'', 28, N'', N'', N'', 1, N'', NULL, N'Water, Orange Juice from Concentrate from Florida.', N'Keep Refrigerated', N'', N'', N'100', NULL, N'', NULL, N'', N'', N'10', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (166, N'', N'', N'41467000813 ', 68, 161, 2.7900, 38, N'', 6, 16, 1, 473, NULL, N'', N'', N'', N'', N'', 2, NULL, 30, N'ML', 188, N'', 18, 40, N'30', 3, 5, N'2', N'10', N'0', N'', N'', N'', N'15', N'4', 30, 1, N'', N'', 1, 0, N'0', N'0', 1, N'', N'', N'', 1, N'', NULL, N'Milk, Cream, Contains less than 1% of each of the following: Sodium Citrate and Disodium Phosphate.', N'Keep Refrigerated', N'Contains: Milk', N'2', N'0', 4, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (167, N'', N'', N'41467002183 ', 68, 161, 10.1000, 1, N'', 21, 0.5, 2, 1.89, NULL, N'', N'', N'K-D', N'', N'', 8, 1, 240, N'ML', 188, N'', 8, 120, N'45', 5, 8, N'3', N'15', N'0', N'', N'', N'', N'20', N'7', 125, 5, N'', N'', 12, 4, N'0', N'0', 12, N'', N'', N'', 8, N'16', NULL, N'Reduced Fat Milk, Vitamin A Palmitate, and Vitamin D3.', N'Keep Refrigerated', N'', N'10', N'4', 30, N'0', 25, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (168, N'', N'', N'41508600156 ', 67, 3, 5.8300, 55, N'', 10, 16.9, 4, 500, NULL, N'', N'', N'OU-P', N'', N'', 8, 4, 237, N'ML', 188, N'', 2, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Natural Spring Water.', N'', N'', N'', N'', 4, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (169, N'', N'', N'41789001215 ', 41, 115, 7.8200, 66, N'Chicken Flavor', 20, 2.25, 4, 64, NULL, N'', N'', N'', N'', N'', 2.25, 4, 64, N'G', 200, N'', 1, 290, N'110', 12, 18, N'6', N'30', N'0', N'', N'', N'', N'-5', N'1', 1190, 50, N'', N'', 38, 13, N'2', N'8', 2, N'', N'', N'', 7, N'', NULL, N'Enriched Wheat Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola, Cottonseed, Palm) Preserved by TBHQ, Dehydrated Vegetables (Corn, Carrot, Green Peas, Onion, Garlic, Celery Stalk), Salt, Powdered Cooked Chicken, Chicken Fat, MSG, Hydrolyzed Corn, Wheat and Soy Protein, Lactose, Sugar, Dehydrated Soy Sauce (Wheat, Soybeans, Salt, Maltodextrin), Autolyzed Yeast Extract, Spices, Chicken Broth, Soya Lecithin, Potassium Carbonate, Sodium Phosphate, Sodium Carbonate, Turmeric, Disodium Inosinate, Disodium Guanylate.', N'', N'Contains Wheat, Soy and Milk ingredients. Manufactured in a facility that also processes Shellfish and Fish products.', N'2', N'', NULL, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (170, N'', N'', N'41789001222 ', 41, 115, 6.0700, 66, N'Beef Flavor', 20, 2.25, 4, 64, NULL, N'', N'', N'', N'', N'', 2.25, 4, 64, N'G', 200, N'', 1, 290, N'110', 12, 18, N'6', N'30', N'0', N'', N'', N'', N'0', N'0', 1130, 47, N'', N'', 38, 13, N'2', N'8', 2, N'', N'', N'', 7, N'', NULL, N'Enriched Wheat Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola, Cottonseed, Palm) Preserved by TBHQ, Dehydrated Vegetables (Corn, Carrot, Onion, Garlic, Chive), Salt, Textured Soy Protein, MSG, Lactose, Dehydrated Soy Sauce (Wheat, Soybeans, Salt, Maltodextrin), Maltodextrin, Beef Extract, Sugar, Spices, Chicken Broth, Caramel Color, Soya Lecithin, Potassium Carbonate, Sodium Phosphate, Beef Fat, Sodium Carbonate, Disodium Inosinate, Disodium Guanylate, Turmeric.', N'', N'Contains Wheat, Soy and Milk ingredients. Manufactured in a facility that also processes Shellfish and Fish products.', N'2', N'', NULL, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (171, N'', N'', N'41789001314 ', 41, 115, 5.5700, 66, N'Chicken Flavor', 2, 13.5, 4, 384, NULL, N'', N'', N'', N'', N'', 2.25, 4, 64, N'G', 200, N'', 6, 290, N'110', 12, 18, N'6', N'30', N'0', N'', N'', N'', N'-5', N'1', 1190, 50, N'', N'', 38, 13, N'2', N'8', 2, N'', N'', N'', 7, N'', NULL, N'Enriched Wheat Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola, Cottonseed, Palm) Preserved by TBHQ, Dehydrated Vegetables (Corn, Carrot, Green Peas, Onion, Garlic, Celery Stalk), Salt, Powdered Cooked Chicken, Chicken Fat, MSG, Hydrolyzed Corn, Wheat and Soy Protein, Lactose, Sugar, Dehydrated Soy Sauce (Wheat, Soybeans, Salt, Maltodextrin), Autolyzed Yeast Extract, Spices, Chicken Broth, Soya Lecithin, Potassium Carbonate, Sodium Phosphate, Sodium Carbonate, Turmeric, Disodium Inosinate, Disodium Guanylate.', N'', N'Contains Wheat, Soy and Milk ingredients. Manufactured in a facility that also processes Shellfish and Fish products.', N'2', N'', NULL, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (172, N'', N'', N'41789001321 ', 41, 115, 9.2400, 66, N'Beef Flavor', 2, 13.5, 4, 384, NULL, N'', N'', N'', N'', N'', 2.25, 4, 64, N'G', 200, N'', 6, 290, N'110', 12, 18, N'6', N'30', N'0', N'', N'', N'', N'0', N'0', 1130, 47, N'', N'', 38, 13, N'2', N'8', 2, N'', N'', N'', 7, N'', NULL, N'Enriched Wheat Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola, Cottonseed, Palm) Preserved by TBHQ, Dehydrated Vegetables (Corn, Carrot, Onion, Garlic, Chive), Salt, Textured Soy Protein, MSG, Lactose, Dehydrated Soy Sauce (Wheat, Soybeans, Salt, Maltodextrin), Maltodextrin, Beef Extract, Sugar, Spices, Chicken Broth, Caramel Color, Soya Lecithin, Potassium Carbonate, Sodium Phosphate, Beef Fat, Sodium Carbonate, Disodium Inosinate, Disodium Guanylate, Turmeric.', N'', N'Contains Wheat, Soy and Milk ingredients. Manufactured in a facility that also processes Shellfish and Fish products.', N'2', N'', NULL, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (173, N'', N'', N'41789001574 ', 41, 115, 12.3000, 66, N'Roast Chicken Flavor', 20, 2.25, 4, 64, NULL, N'', N'', N'', N'', N'', 2.25, 4, 64, N'G', 200, N'', 1, 290, N'110', 12, 18, N'6', N'30', N'0', N'', N'', N'', N'0', N'0', 1330, 55, N'', N'', 37, 12, N'2', N'8', 2, N'', N'', N'', 7, N'', NULL, N'Enriched Wheat Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola, Cottonseed, Palm) Preserved by TBHQ, Dehydrated Vegetables (Corn, Carrot, Onion, Garlic, Chive), Salt, Textured Soy Protein, MSG, Hydrolyzed Corn, Wheat and Soy Protein, Chicken Fat, Dehydrated Soy Sauce (Wheat, Soybeans, Salt, Maltodextrin), Powdered Cooked Chicken, Natural and Artificial Flavors, Sugar, Spices, Autolyzed Yeast Extract, Chicken Broth, Soya Lecithin, Potassium Carbonate, Silicon Dioxide (anti-caking agent), Sodium Phosphate, Sodium Carbonate, Lactose, Turmeric, Disodium Inosinate, Disodium Guanylate, Caramel Color.', N'', N'Contains Wheat, Soy and Milk ingredients. Manufactured in a facility that also processes Shellfish and Fish products.', N'2', N'', NULL, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (174, N'', N'', N'41789002113 ', 40, 114, 9.3700, 64, N'Chicken Flavor', 17, 3, 4, 85, NULL, N'', N'', N'', N'', N'', 1.5, 4, 43, N'G', 200, N'', 2, 190, N'70', 7, 11, N'3.5', N'18', N'0', N'', N'', N'', N'0', N'0', 790, 33, N'', N'', 26, 9, N'1', N'4', -1, N'', N'', N'', 5, N'', NULL, N'Ramen Noodles: Enriched Wheat Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola, Cottonseed, Palm) preserved TBHQ, Salt, Potassium Carbonate, Soy Sauce (Water, Wheat, Soybeans, Salt), Sodium Phosphate, Sodium Carbonate, Turmeric. Soup Base: MSG, Hydrolyzed Corn, Wheat and Soy Protein, Dehydrated Vegetables (Onion, Garlic, Chive), Sugar, Lactose, Spices, Powdered Cooked Chicken, Cabbage Extract, Turmeric, Disodium Inosinate, Disodium Guanylate.', N'', N'Contains Wheat, Soy and Milk Ingredients. Manufacturerd in a facility that also processes Shellfish and Fish products.', N'', N'', NULL, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (175, N'', N'', N'41789002144 ', 40, 114, 10.3600, 64, N'Oriental Flavor', 17, 3, 4, 85, NULL, N'', N'', N'', N'', N'', 1.5, 4, 43, N'G', 200, N'', 2, 190, N'70', 7, 11, N'3.5', N'18', N'0', N'', N'', N'', N'0', N'0', 890, 37, N'', N'', 26, 9, N'1', N'4', 0, N'', N'', N'', 5, N'', NULL, N'Ramen Noodles: Enriched Wheat Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola, Cottonseed, Palm) preserved TBHQ, Salt, Potassium Carbonate, Soy Sauce (Water, Wheat, Soybeans, Salt), Sodium Phosphate, Sodium Carbonate, Turmeric. Soup Base: Salt, Dehydrated Soy Sauce (Wheat, Soybeans, Salt, Maltodextrin), MSG, Dehydrated Vegetables (Onion, Garlic, Chive), Sugar, Caramel Color, Spices, Beef Extract, Lactose, Hydrolyzed Corn, Wheat and Soy Protein, Partially Hydrogenated Vegetable Oil (Cottonseed, Soybean), Disodium Inosinate, Disodium Guanylate.', N'', N'Contains Wheat, Soy and Milk Ingredients. Manufacturerd in a facility that also processes Shellfish and Fish products.', N'', N'0', NULL, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (176, N'', N'', N'41789002175 ', 40, 114, 13.0400, 64, N'Shrimp Flavor', 17, 3, 4, 85, NULL, N'', N'', N'', N'', N'0 grams Trans Fat', 1.5, 4, 43, N'G', 200, N'', 2, 190, N'70', 7, 11, N'3.5', N'18', N'0', N'', N'', N'', N'0', N'0', 860, 36, N'', N'', 26, 9, N'1', N'4', -1, N'', N'', N'', 5, N'', NULL, N'Ramen Noodles: Enriched Wheat Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola, Cottonseed, Palm) preserved TBHQ, Salt, Soy Sauce (Water, Wheat, Soybeans, Salt), Potassium Carbonate, Sodium (Mono, Hexameta, and/or Tripoly) Phosphate, Sodium Carbonate, Turmeric. Soup Base: Salt, MSG, Maltodextrin, Dehydrated Vegetables (Onion, Garlic, Chive), Spices, Hydrolyzed Corn, Wheat and Soy Protein, Sugar, Natural and Artificial Shrimp and Lobster Flavor, Partially Hydrogenated Vegetable Oil (Cottonseed, Soybean), Silicon Dioxide (anti-caking agent), Citric Acid, Disodium Inosinate, Disodium Guanylate, Lactose.', N'', N'Contains Wheat, Soy Milk, Shrimp and Lobster Ingredients. Manufacturerd in a facility that also processes Fish products.', N'0', N'', NULL, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (177, N'', N'', N'41789002519 ', 40, 114, 8.4200, 64, N'Creamy Chicken Flavor', 17, 3, 4, 85, NULL, N'', N'', N'', N'', N'', 1.5, 4, 43, N'G', 200, N'', 2, 190, N'70', 8, 12, N'3.5', N'18', N'0', N'', N'', N'', N'0', N'0', 710, 30, N'', N'', 26, 9, N'1', N'4', -1, N'', N'', N'', 5, N'', NULL, N'Ramen Noodles: Enriched Wheat Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola, Cottonseed, Palm) preserved TBHQ, Salt, Potassium Carbonate, Soy Sauce (Water, Wheat, Soybeans, Salt), Sodium Phosphate, Sodium Carbonate, Turmeric. Soup Base: Hydrogenated Soybean Oil, Salt, Food Starch Modified, Sugar, MSG, Dehydrated Vegetables (Onion, Garlic, Parsley), Chicken Broth, Hydrolyzed Corn, Wheat and Soy Protein, Autolyzed Yeast Extract, Spices, Xanthan Gum, Turmeric, Artificial Flavor, Sodium Caseinate, Disodium Inosinate, Disodium Guanylate.', N'', N'Contains Wheat, Soy and Milk Ingredients. Manufacturerd in a facility that also processes Shellfish and Fish products.', N'', N'', NULL, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (178, N'', N'', N'43000014257 ', 37, 148, 10.0000, 8, N'with Almonds', 2, 14.5, 4, 411, NULL, N'', N'', N'K-D', N'', N'', 1.1, 4, 32, N'G', 200, N'', 13, 130, N'25', 2.5, 4, N'0', N'0', N'0', N'', N'0.5', N'1.5', N'0', N'0', 150, 6, N'70', N'2', 25, 8, N'2', N'8', 6, N'', N'17', N'', 3, N'', NULL, N'Corn, Whole Grain Wheat, Sugar, Whole Grain Rolled Oats, Almonds, Brown Sugar, High Oleic Vegetable Oil (Canola or Sunflower Oil), Rice Flour, Corn Syrup, Wheat Flour, Rice, Malted Barley Flour, Salt, Fructose, Whey (from Milk), Honey, Malted Corn and Barley Syrup, Cinnamon, Artificial Flavor, Natural Flavor, Caramel Color, Annatto Extract (Color), BHT added to packaging material to preserve product freshness, Reduced Iron, Niacinamide, Vitamin B6, Vitamin A Palmitate, Riboflavin (Vitamin B2), Thiamin Mononitrate (Vitamin B1), Zinc Oxide (source of Zinc), Folic Acid, Vitamin B12, Vitamin D.', N'', N'', N'15', N'0', 0, N'45', 10, N'', N'', N'25', N'25', N'25', N'', NULL, N'25', 50, N'25', N'', N'', 6, NULL, N'4', N'2', N'', N'4', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (179, N'', N'', N'43000014271 ', 37, 148, 7.8000, 8, N'with Almonds', 2, 19, 4, 538, NULL, N'', N'', N'K-D', N'', N'', 1.1, 4, 32, N'G', 200, N'', 17, 130, N'25', 2.5, 4, N'0', N'0', N'0', N'', N'0.5', N'1.5', N'0', N'0', 150, 6, N'70', N'2', 25, 8, N'2', N'8', 6, N'', N'17', N'', 3, N'', NULL, N'Corn, Whole Grain Wheat, Sugar, Whole Grain Rolled Oats, Almonds, Brown Sugar, High Oleic Vegetable Oil (Canola or Sunflower Oil), Rice Flour, Corn Syrup, Wheat Flour, Rice, Malted Barley Flour, Salt, Fructose, Whey (from Milk), Honey, Malted Corn and Barley Syrup, Cinnamon, Artificial Flavor, Natural Flavor, Caramel Color, Annatto Extract (Color), BHT added to packaging material to preserve product freshness, Reduced Iron, Niacinamide, Vitamin B6, Vitamin A Palmitate, Riboflavin (Vitamin B2), Thiamin Mononitrate (Vitamin B1), Zinc Oxide (source of Zinc), Folic Acid, Vitamin B12, Vitamin D.', N'', N'', N'15', N'0', 0, N'45', 10, N'', N'', N'25', N'25', N'25', N'', NULL, N'25', 50, N'25', N'', N'', 6, NULL, N'4', N'2', N'', N'4', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (180, N'', N'', N'43000112304 ', 37, 148, 13.9200, 8, N'', 2, 16, 4, 453, NULL, N'', N'', N'K-D', N'', N'', 1.1, 4, 30, N'G', 200, N'', 15, 120, N'15', 1.5, 2, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 150, 6, N'60', N'2', 25, 8, N'2', N'8', 6, N'', N'17', N'', 2, N'', NULL, N'Corn, Whole Grain Wheat, Sugar, Whole Grain Rolled Oats, Brown Sugar, Vegetable Oil (Canola or Sunflower Oil), Rice Flour, Wheat Flour, Malted Barley Flour, Salt, Rice, Corn Syrup, Whey (from Milk), Honey, Malted Corn and Barley Syrup, Caramel Color, Artificial Flavor, Annatto Extract (Color), BHT added to packaging material to preserve product freshness, Reduced Iron, Niacinamide, Vitamin B6, Vitamin A Palmitate, Riboflavin (Vitamin B2), Thiamin Mononitrate (Vitamin B1), Zinc Oxide (source of Zinc), Folic Acid, Vitamin B12, Vitamin D.', N'', N'', N'15', N'0', 0, N'45', 10, N'', N'', N'25', N'25', N'25', N'', NULL, N'25', 50, N'25', N'', N'', 6, NULL, N'4', N'2', N'', N'2', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (181, N'', N'', N'44700019016 ', 51, 134, 9.7400, 39, N'Smoked', 27, 12, 4, 340, NULL, N'', N'', N'USDA Inspected', N'', N'', 2.3, 4, 64, N'G', 200, N'3', 5, 50, N'10', 1.5, 2, N'0.5', N'3', N'0', N'', N'', N'', N'15', N'5', 740, 31, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 11, N'', NULL, N'Ham, Water, Contains less than 2% of Salt, Sodium Lactate, Sugar, Sodium Phosphates, Sodium Diacetate, Sodium Ascorbate, Sodium Nitrite.', N'Keep Refrigerated', N'', N'', N'25', NULL, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (182, N'', N'', N'44700030134 ', 51, 134, 11.6300, 39, N'Honey', 27, 10, 4, NULL, NULL, N'', N'', N'USDA Inspected', N'', N'', 2, 4, 63, N'G', 200, N'', 4.5, 60, N'15', 1, 2, N'0.5', N'3', N'0', N'', N'', N'', N'35', N'12', 810, 34, N'', N'', 2, 1, N'', N'', 2, N'', N'', N'', 11, N'', NULL, N'Ham, Water, Honey, Salt, Contain less than 2% of Sugar, Sodium Lactate, Sodium Phosphate, Sodium Erythorbate (made from Sugar), Sodium Diacetate, Sodium Nitrite.', N'Keep Refrigerated', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (183, N'', N'', N'46000821214 ', 24, 132, 13.4500, 67, N'Traditional', 3, 16, 4, 453, NULL, N'', N'', N'', N'', N'', 4, 4, 120, N'G', 200, N'', 4, 90, N'5', 0.5, 1, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 560, 24, N'', N'', 16, 5, N'5', N'20', 0, N'', N'', N'', 6, N'', NULL, N'Cooked Pinto Beans, Water, Salt, Tomato Paste, Partially Hydrogenated Lard with BHA and BHT added to protect flavor, Onion Powder, Spice, Chili Pepper, Garlic Powder.', N'Refrigerate Unused Portion.', N'', N'0', N'0', 2, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (184, N'', N'', N'46000821313 ', 24, 132, 5.2100, 67, N'Traditional', 3, 31, 4, 878, NULL, N'', N'', N'', N'', N'', 4, 4, 120, N'G', 200, N'', 7, 100, N'5', 0.5, 1, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 570, 24, N'', N'', 17, 6, N'6', N'24', 1, N'', N'', N'', 6, N'', NULL, N'Cooked Pinto Beans, Water, Salt, Partially Hydrogenated Lard with BHA and BHT added to protect flavor, Onion Powder, Chili Pepper, Spice, Garlic Powder.', N'Refrigerate Unused Portion.', N'', N'0', N'0', 4, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (185, N'', N'', N'49000004632 ', 13, 34, 6.1300, 69, N'', 10, 12, 1, 355, NULL, N'', N'', N'', N'Mexico', N'Spanish Translations', 12, 1, 355, N'ML', 188, N'', 1, 150, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 85, 3, N'', N'', 39, 13, N'', N'', 39, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Sugar, Caramel Color, Phosphoric Acid, Natural Flavors, Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (186, N'', N'', N'49000007978 ', 13, 51, 7.5900, 11, N'', 18, 24, 1, 710, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 3, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 30, 1, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Aspartame, Phosphoric Acid, Potassium Benzoate (to protect taste), Natural Flavors, Citric Acid, Caffeine.', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (187, N'', N'', N'49000010633 ', 13, 51, 12.9500, 11, N'', 2, 288, 1, 8.52, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 24, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 40, 2, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Aspartame, Phosphoric Acid, Potassium Benzoate (to protect taste), Natural Flavors, Citric Acid, Caffeine.', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', 46, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (188, N'', N'', N'49000012781 ', 13, 37, 0.8300, 11, N'', 2, 288, 1, 8.52, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 24, 140, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 50, 2, N'', N'', 39, 13, N'', N'', 39, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Phosphoric Acid, Natural Flavors, Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', 34, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (189, N'', N'', N'49000018011 ', 13, 34, 4.2800, 69, N'Cherry', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 25, 1, N'', N'', 28, 9, N'', N'', 28, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Phosphoric Acid, Natural Flavors, Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (190, N'', N'', N'49000019230 ', 13, 149, 13.4600, 20, N'Fruit Punch', 18, 32, 1, 946, NULL, N'', N'', N'OU', N'', N'', 8, 1, 240, N'ML', 188, N'', 4, 60, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 55, 2, N'30', N'1', 17, 6, N'', N'', 15, N'', N'', N'', 0, N'', NULL, N'Water, High Fructose Corn Syrup, Maltodextrin (Glucose Polymers), Citric Acid, Salt, Natural Flavors, Potassium Citrate, Modified Food Starch, Red 40, Potassium Phosphate, Glycerol Ester of Wood Rosin, Guar Gum, Coconut Oil, Brominated Vegetable Oil, Niacinamide (Vitamin B3), Pyridoxine Hydrochloride (Vitamin B6), Cyanocobalamin (Vitamin B12).', N'Refrigerate after Opening', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'10', N'', NULL, N'10', NULL, N'10', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (191, N'', N'', N'49000023190 ', 13, 173, 8.9200, 43, N'', 18, 33.8, 1, 1, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 4, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 45, 2, N'', N'', 26, 9, N'', N'', 26, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup and/or Sucrose, Citric Acid, Natural Flavors, Sodium Citrate, Sodium Benzoate (to protect taste).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (192, N'', N'', N'49000024685 ', 13, 34, 6.2500, 69, N'', 18, 16.9, 1, 500, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 35, 1, N'', N'', 27, 9, N'', N'', 27, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Phosphoric Acid, Natural Flavors, Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (193, N'', N'', N'49000027211 ', 13, 51, 1.1100, 11, N'', 18, 144, 1, 4.2, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 18, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 30, 1, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Aspartame, Phosphoric Acid, Potassium Benzoate (to protect taste), Natural Flavors, Citric Acid, Caffeine.', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (194, N'', N'', N'49000028904 ', 13, 37, 7.2800, 11, N'Holiday 2007 Fridge Pack', 2, 144, 1, 4.26, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 12, 140, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 50, 2, N'', N'', 39, 13, N'', N'', 39, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Phosphoric Acid, Natural Flavors, Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (195, N'', N'', N'49000028928 ', 13, 173, 2.6200, 43, N'Fridge Pack', 2, 144, 1, 4.26, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 12, 140, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 70, 3, N'', N'', 38, 13, N'', N'', 38, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Citric Acid, Natural Flavors, Sodium Citrate, Sodium Benzoate (to protect the taste).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (196, N'', N'', N'49000029796 ', 13, 144, 1.3800, 69, N'', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 30, 1, N'', N'', 26, 9, N'', N'', 26, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Natural and Artificial Flavors, Phosphoric Acid, Potassium Benzoate (to protect taste), Caffeine, Monosodium Phosphate, Lactic Acid.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (197, N'', N'', N'49000029901 ', 13, 144, 1.2200, 69, N'', 3, 12, 1, 355, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 1, 140, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 40, 2, N'', N'', 39, 13, N'', N'', 39, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Natural and Artificial Flavors, Phosphoric Acid, Potassium Benzoate (to protect taste), Caffeine, Monosodium Phosphate, Lactic Acid.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (198, N'', N'', N'49000031171 ', 13, 35, 9.1400, 69, N'', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 25, 1, N'', N'', 28, 9, N'', N'', 28, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Phosphoric Acid, Natural Flavors, Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (199, N'', N'', N'49000035759 ', 13, 149, 12.1400, 20, N'Black Cherry Lime', 18, 32, 1, 946, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 4, 60, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 55, 2, N'30', N'1', 17, 6, N'', N'', 15, N'', N'', N'', 0, N'', NULL, N'Water, High Fructose Corn Syrup, Maltodextrin (Glucose Polymers), Citric Acid, Salt, Natural Flavors, Potassium Citrate, Potassium Phosphate, Niacinamide (Vitamin B3), Yellow 5, Pyridoxine Hydrochloride, (Vitamin B6), Blue 1, Cyanocobalamin (Vitamin B12).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'10', N'', NULL, N'10', NULL, N'10', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (200, N'', N'', N'49000036473 ', 13, 51, 4.2400, 69, N'Lime Flavor', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 30, 1, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Natural Flavors, Phosphoric Acid, Potassium Benzoate (to protect taste), Aspartame, Citric Acid, Acesulfame Potassium, Caffeine.', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', 31, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (201, N'', N'', N'49000037197 ', 13, 56, 9.3300, 43, N'', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 25, 1, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Citric Acid, Natural Flavors, Potassium Citrate, Potassium Benzoate (to protect taste), Aspartame, Acesulfame Potassium', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (202, N'', N'', N'49000037241 ', 13, 174, 6.2500, 43, N'', 18, 67.6, 1, 2, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 8, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 25, 1, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Citric Acid, Natural Flavors, Potassium Citrate, Potassium Benzoate (to protect taste), Aspartame, Acesulfame Potassium', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (203, N'', N'', N'49000039016 ', 13, 149, 4.4500, 20, N'Flava 23 Sourberry', 18, 32, 1, 946, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 4, 60, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 55, 2, N'30', N'1', 17, 6, N'', N'', 15, N'', N'', N'', 0, N'', NULL, N'Water, High Fructose Corn Syrup, Maltodextrin (Glucose Polymers), Citric Acid, Salt, Potassium Citrate, Natural Flavors, Acacia, Red 40, Glycerol Ester of Wood Rosin, Ascorbic Acid (to protect paste), Potassium Phosphate, Niacinamide (Vitamin B3), Brominated Vegetable Oil, Pyridoxine Hydrochloride (Vitamin B6), Blue 1, Cyanocobalamin (Vitamin B12).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'10', N'', NULL, N'10', NULL, N'10', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (204, N'', N'', N'49000040692 ', 13, 34, 1.3300, 69, N'', 2, 96, 1, 4.26, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 8, 140, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 50, 2, N'', N'', 39, 13, N'', N'', 39, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Phosphoric Acid, Natural Flavors, Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', 34, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (205, N'', N'', N'49000042580 ', 13, 189, 11.3300, 11, N'Calorie Free', 18, 67.6, 1, 2, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 8, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 30, 1, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Phosphoric Acid, Aspartame, Potassium Benzoate (to protect taste), Natural Flavors, Potassium Citrate, Acesulfame Potassium, Caffeine.', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (206, N'', N'', N'49000042689 ', 13, 51, 8.8900, 12, N'Cola with Splenda', 3, 12, 1, 355, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 1, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 40, 2, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Natural Flavors, Phosphoric Acid, Potassium Benzoate (to protect taste), Sucralose, Acesulfame Potassium, Caffeine, Citric Acid.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (207, N'', N'', N'49000044539 ', 13, 179, 13.7100, 20, N'', 3, 10.5, 1, 311, NULL, N'', N'', N'', N'', N'', 10.5, 1, 311, N'ML', 188, N'', 1, 5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 110, 5, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', -1, N'', NULL, N'Carbonated Water, Citric Acid, Taurine, Natural and Artificial Flavors, Sodium Citrate, Sodium Benzoate (to protect taste), Ginseng Extract, Caffeine, Vegetable Juice (for color), Acesulfame Potassium, Sucralose, Carnitine Fumarate, Niacinamide (Vitamin B3), Pyridoxine Hydrochloride (Vitamin B6), Guarana Extract, Cyanocobalamin (Vitamin B12).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'25', N'', NULL, N'25', NULL, N'15', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (208, N'', N'', N'49000044546 ', 13, 179, 8.5600, 20, N'Four Pack', 2, 42, 1, 1244, NULL, N'', N'', N'', N'', N'', 10.5, 1, 311, N'ML', 188, N'', 4, 5, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 110, 5, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', -1, N'', NULL, N'Carbonated Water, Citric Acid, Taurine, Natural and Artificial Flavors, Sodium Citrate, Sodium Benzoate (to protect taste), Ginseng Extract, Caffeine, Vegetable Juice (for color), Acesulfame Potassium, Sucralose, Carnitine Fumarate, Niacinamide (Vitamin B3), Pyridoxine Hydrochloride (Vitamin B6), Guarana Extract, Cyanocobalamin (Vitamin B12).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'25', N'', NULL, N'25', NULL, N'15', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (209, N'', N'', N'49000044898 ', 13, 34, 14.9900, 11, N'Black Cherry Vanilla', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 25, 1, N'', N'', 27, 9, N'', N'', 27, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Natural Flavors, Phosphoric Acid, Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (210, N'', N'', N'49000047608 ', 13, 37, 0.2400, 11, N'', 3, 64, 1, 1.89, NULL, N'', N'', N'', N'', N'', 8, 1, 237, N'ML', 188, N'', 8, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 30, 1, N'', N'', 26, 9, N'', N'', 26, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Phosphoric Acid, Natural Flavors, Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (211, N'', N'', N'49000047615 ', 13, 51, 12.4200, 11, N'', 3, 64, 1, 1.89, NULL, N'', N'', N'', N'', N'', 8, 1, 237, N'ML', 188, N'', 8, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 25, 1, N'', N'', 0, 0, N'', N'', 0, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Aspartame, Phosphoric Acid, Potassium Benzoate (to protect taste), Natural Flavors, Citric Acid, Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (212, N'', N'', N'49000048087 ', 13, 52, 9.8300, 13, N'', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 30, 1, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Magnesium Sulfate, Caramel Color, Phosphoric Acid, Potassium Sorbate and Potassium Benzoate (to protect taste), Aspartame, Natural Flavors, Acesulfame Potassium, Caffeine, Zinc Gluconate, Niacinamide (Vitamin B3), Pyridoxine Hydrochloride (Vitamin B6), Cyanocobalamin (Vitamin B12).', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'15', N'', NULL, N'15', NULL, N'15', N'', N'', NULL, NULL, N'10', N'10', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', 23, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (213, N'', N'', N'49022168466 ', 15, 47, 2.9100, 52, N'Reduced Fat', 18, 1, 2, 3.78, NULL, N'', N'', N'KD', N'', N'', 1, NULL, 240, N'ML', 188, N'', 16, 120, N'45', 5, 8, N'3', N'15', N'', N'', N'', N'', N'20', N'7', 125, 5, N'', N'', 12, 4, N'0', N'', 12, N'', N'', N'', 8, N'16', NULL, N'Reduced Fat Milk, Vitamin A Palmitate and Vitamin D3.', N'', N'', N'10', N'4', 30, N'0', 25, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (214, N'', N'', N'50000112340 ', 47, 36, 2.1000, 44, N'Vanilla Caramel', 18, 32, 1, 946, NULL, N'', N'', N'OU-D', N'', N'Spanish Translations', 1, NULL, 15, N'ML', 188, N'', 63, 35, N'15', 1.5, 2, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 10, 0, N'', N'', 5, 2, N'', N'', 5, N'', N'', N'', 0, N'', NULL, N'Water, Sugar, Partially Hydrogenated Soybean and/or Cottonseed Oil, and less than 2% of Sodium Caseinate (a Milk Derivative)**, Natural and Artificial Flavors, Dipotassium Phosphate, Color Added, Sodium Stearoyl Lactylate, Mono and Diglycerides, Polysorbate 60, Carrageenan, Beta-Carotene Color. ** Not a source of lactose.', N'Keep Refrigerated', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (215, N'', N'', N'50000302628 ', 47, 36, 0.6700, 44, N'Original', 18, 32, 1, 946, NULL, N'', N'', N'OU-D', N'', N'Spanish Translations', 1, NULL, 15, N'ML', 188, N'', 63, 20, N'10', 1, 2, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 0, 0, N'', N'', 2, 1, N'', N'', -1, N'', N'', N'', 0, N'', NULL, N'Water, Corn Syrup Solids, Partially Hydrogenated Soybean and/or Cottonseed Oil, and less than 2% of Sodium Caseinate (a Milk derivative), Dipotassium Phosphate, Mono- and Diglycerides, Polysorbate 60, Sodium Stearoyl Lactylate, Artificial Flavor, Carrageenan, Beta-Carotene Color.', N'Keep Refrigerated', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (216, N'', N'', N'50000328529 ', 47, 36, 4.0900, 44, N'Original', 5, 64, 1, 1.89, NULL, N'', N'', N'OU-D', N'', N'Spanish Translations', 1, NULL, 15, N'ML', 188, N'', 126, 20, N'10', 1, 2, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 0, 0, N'', N'', 2, 1, N'', N'', -1, N'', N'', N'', 0, N'', NULL, N'Water, Corn Syrup Solids, Partially Hydrogenated Soybean and/or Cottonseed Oil, and less than 2% of Sodium Caseinate (a Milk derivative), Dipotassium Phosphate, Mono- and Diglycerides, Polysorbate 60, Sodium Stearoyl Lactylate, Artificial Flavor, Carrageenan, Beta-Carotene Color.', N'Keep Refrigerated', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (217, N'', N'', N'50000339525 ', 47, 36, 2.1400, 44, N'Original - Fat Free', 18, 32, 1, 946, NULL, N'', N'', N'OU-D', N'', N'Spanish Translations', 1, NULL, 15, N'ML', 188, N'', 63, 10, N'0', 0, 0, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 0, 0, N'', N'', 2, 1, N'', N'', 0, N'', N'', N'', 0, N'', NULL, N'Water, Corn Syrup Solids, Partially Hydrogenated Soybean and/or Cottonseed Oil, and less than 2% of Sugar, Modified Cornstarch, Dipotassium Phosphate, Sodium Caseinate (a Milk derivative), Color added, Artificial Flavor, Mono- and Diglycerides, Polysorbate 60, Sodium Stearoyl Lactylate, Carrageenan, Salt, Beta-Carotene Color.', N'Keep Refrigerated', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (218, N'', N'', N'50000412501 ', 47, 36, 8.7700, 44, N'Vanilla Caramel', 18, 16, 1, 473, NULL, N'', N'', N'OU-D', N'', N'', 1, NULL, 15, N'ML', 188, N'', 32, 35, N'15', 1.5, 2, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 10, 0, N'', N'', 5, 2, N'', N'', 5, N'', N'', N'', 0, N'', NULL, N'Water, Sugar, Partially Hydrogenated Soybean and/or Cottonseed Oil, and less than 2% of Sodium Caseinate (a Milk Derivative)**, Natural and Artificial Flavors, Dipotassium Phosphate, Color Added, Sodium Stearoyl Lactylate, Mono and Diglycerides, Polysorbate 60, Carrageenan, Beta-Carotene Color. ** Not a source of lactose.', N'Keep Refrigerated', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (219, N'', N'', N'28400038331 ', 23, 73, 12.5800, 14, N'99 Cents', 17, 4.25, 4, 120.4, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 4.5, 160, N'90', 10, 16, N'1.5', N'7', N'0', N'', N'', N'', N'0', N'0', 170, 7, N'', N'', 15, 5, N'1', N'4', -1, N'', N'', N'', 2, N'', NULL, N'Corn, Corn Oil, and Salt.', N'', N'', N'0', N'0', 2, N'0', NULL, N'6', N'', N'', N'', N'', N'', NULL, N'2', NULL, N'', N'', N'', 4, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (220, N'', N'', N'28400040112 ', 23, 28, 2.3600, 9, N'', 17, 1, 4, 28.3, NULL, N'', N'', N'', N'', N'', 1, 4, 28.3, N'G', 200, N'', 1, 160, N'90', 10, 15, N'2', N'10', N'0', N'', N'', N'', N'-5', N'1', 290, 12, N'', N'', 15, 5, N'-1', N'4', 1, N'', N'', N'', 2, N'', NULL, N'Enriched Corn Meal (Corn Meal, Ferrous Sulfate, Niacin, Thiamin Mononitrate, Riboflavin, and Folic Acid), Vegetable Oil (Contains one or more of the following: Corn, Soybean or Sunflower Oil), Whey, Salt, Cheddar Cheese (Milk, Cheese Cultures, Salt, Enzymes), and less than 2% of the following: Partially Hydrogenated Soybean Oil, Maltodextrin, Disodium Phosphate, Sour Cream (Cultured Cream, Nonfat Milk), Artificial Flavor, MSG, Lactic Acid, Artificial Colors (including Yellow 6), and Citric Acid.', N'', N'Contains: Milk ingredients.', N'0', N'0', 0, N'2', NULL, N'6', N'', N'4', N'4', N'4', N'', NULL, N'', NULL, N'', N'', N'', 2, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (221, N'', N'', N'28400041423 ', 23, 111, 3.7200, 63, N'', 17, 16.5, 4, 467.7, NULL, N'', N'', N'OU', N'', N'', 1, 4, 28, N'G', 200, N'', 17, 150, N'90', 10, 15, N'1', N'6', N'0', N'', N'3', N'6', N'0', N'0', 180, 7, N'', N'', 15, 5, N'1', N'4', 0, N'', N'', N'', 2, N'', NULL, N'Potatoes, Sunflower Oil, and Salt.', N'', N'', N'0', N'10', 0, N'2', NULL, N'10', N'', N'2', N'', N'6', N'', NULL, N'6', NULL, N'', N'', N'', 4, NULL, N'4', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (222, N'', N'', N'28400041454 ', 23, 158, 12.8000, 63, N'Original', 17, 15.5, 4, 439.4, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 16, 160, N'90', 10, 16, N'3', N'15', N'0', N'', N'', N'', N'0', N'0', 160, 7, N'340', N'10', 14, 5, N'1', N'4', 0, N'', N'', N'', 2, N'', NULL, N'Potatoes, Vegetable Oil (Contains one or more of the following: Corn, Cottonseed, or Sunflower Oil), and Salt.', N'', N'', N'0', N'10', 0, N'0', NULL, N'8', N'', N'2', N'', N'4', N'', NULL, N'6', NULL, N'', N'', N'', 4, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (223, N'', N'', N'28400041737 ', 23, 158, 5.2500, 24, N'Sour Cream & Onion', 17, 11.5, 4, 326, NULL, N'', N'', N'K-D', N'', N'', 1, 4, 28, N'G', 200, N'', 12, 160, N'90', 10, 15, N'1', N'5', N'0', N'', N'3', N'6', N'0', N'0', 190, 8, N'330', N'10', 14, 5, N'1', N'4', 1, N'', N'', N'', 2, N'', NULL, N'Potatoes, Sunflower Oil, Salt, Whey Powder, Nonfat Dry Milk, Onion Powder, Partially Hydrogenated Soybean Oil, Dextrose Monohydrate, Maltodextrin, Natural Flavor, Sour Cream (Cultured Cream, Nonfat Dry Milk), MSG, Corn Starch, Modified Corn Starch, Sugar, Citric Acid, Mono- and Diglycerides, and Artificial Color (including Blue 1, Blue 2, Yellow 6, Yellow 5, Red 40).', N'', N'Contains Milk ingredients.', N'0', N'0', 0, N'2', NULL, N'10', N'', N'4', N'2', N'4', N'', NULL, N'8', NULL, N'', N'', N'', 4, NULL, N'4', N'2', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (224, N'', N'', N'28400042550 ', 23, 58, 8.0600, 75, N'', 17, 1.75, 4, 49.6, NULL, N'', N'', N'', N'', N'', 1.75, 4, 49.6, N'G', 200, N'', 1, 260, N'120', 14, 21, N'2', N'11', N'0', N'', N'', N'', N'0', N'0', 340, 14, N'', N'', 32, 11, N'2', N'9', 2, N'', N'', N'', 3, N'', NULL, N'Whole Corn, Vegetable Oil (Contains one or more of the following: Corn, Soybean, or Sunflower Oil), Maltodextrin, Salt, Whey, Cheddar Cheese (Cultured Milk, Salt, Enzymes), Partially Hydrogenated Soybean Oil, Cream, Corn Flour, MSG, American Cheese (Cultured Milk, Salt, Enzymes), Onion Powder, Tomato Powder, Spices (including Black Pepper), Corn Syrup Solids, Sodium Diacetate, Swiss Cheese (Cultured Milk, Salt, Enzymes), Colby Cheese (Cultured Milk, Salt, Enzymes), Monterey Jack Cheese (Cultured Milk, Salt, Enzymes), Sour Cream (Cultured Cream, Nonfat Milk), Natural and Artificial Flavors, Citric Acid, Artificial Colors (including Yellow 6, Yellow 5, Yellow 6 Lake, Red 40, Blue 1 Lake, Yellow 5 Lake, Blue 1), Garlic Powder, Lactic Acid, Butter (Cream, Salt), Sodium Caseinate, Jalapeno Pepper.', N'', N'Contains Milk Ingredients.', N'2', N'0', 4, N'2', NULL, N'8', N'', N'', N'2', N'2', N'', NULL, N'8', NULL, N'', N'', N'', 10, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (225, N'', N'', N'28400043328 ', 23, 108, 7.1200, 63, N'Cheddar & Sour Cream', 17, 1.5, 4, 42.5, NULL, N'', N'', N'', N'', N'', 1.5, 4, 42.5, N'G', 200, N'', 1, 230, N'130', 15, 22, N'4.5', N'23', N'0', N'', N'', N'', N'-5', N'1', 350, 15, N'', N'', 22, 7, N'1', N'5', -1, N'', N'', N'', 3, N'', NULL, N'Potatoes, Vegetable Oil (Contains one or more of the following: Corn, Cottonseed, or Sunflower Oil), Maltodextrin, Salt, Whey, Whey Protein Concentrate, Cheddar Cheese (Cultured Milk, Salt, Enzymes), Partially Hydrogenated Soybean and Cottonseed Oil, MSG, Onion Powder, Disodium Phosphate, Buttermilk Solids, Butter (Cream, Salt), Sour Cream (Cultured Cream, Nonfat Dry Milk), Lactose, Blue Cheese (Cultured Milk, Salt, Enzymes), Citric Acid, Garlic Powder, Artificial Color (including Yellow 6 Lake, Yellow 6), Sodium Caseinate, Lactic Acid, Natural and Artificial Flavor, Disodium Inosinate, Disodium Guanylate, Nonfat Dry Milk, and Dextrose.', N'', N'Contains Milk ingredients.', N'0', N'20', 2, N'2', NULL, N'10', N'', N'6', N'4', N'10', N'', NULL, N'10', NULL, N'', N'', N'', 8, NULL, N'6', N'2', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (226, N'', N'', N'28400043489 ', 23, 177, 11.9000, 54, N'French Onion', 17, 1.5, 4, 42.5, NULL, N'', N'', N'Smart Choices', N'', N'18G Whole Grains per Serving', 1.5, 4, 42.5, N'G', 200, N'', 1, 210, N'80', 9, 15, N'1.5', N'8', N'0', N'', N'', N'', N'0', N'0', 200, 8, N'110', N'3', 28, 9, N'3', N'14', 4, N'', N'', N'', 4, N'', NULL, N'Whole Corn, Sunflower Oil, Whole Wheat, Rice Flour, Whole Oat Flour, Sugar, Salt, Whey Protein Concentrate, Dry Buttermilk, Whey, Sour Cream (Cultured Cream, Nonfat Dry Milk), Onion Powder, Natural Flavors, Hydrolyzed Soy Protein, Cultured Whey, Corn Starch, Autolyzed Yeast Extract, Mozzarella Cheese (Pasteurized Part Skim Milk, Cheese Cultures, Salt, Enzymes), Citric Acid, Garlic Powder, Gum Arabic, Glycerol, Disodium Phosphate, Spice, and Artificial Color (including Red 40, Blue 1).', N'', N'Contains Wheat, Milk, and Soy ingredients.', N'2', N'0', 0, N'2', NULL, N'10', N'', N'4', N'', N'2', N'', NULL, N'6', NULL, N'', N'', N'', 8, NULL, N'6', N'4', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (227, N'', N'', N'28400043618 ', 23, 108, 2.7300, 63, N'Classic', 17, 11.5, 4, 326, NULL, N'', N'', N'OU', N'', N'', 1, 4, 28, N'G', 200, N'', 12, 150, N'90', 10, 15, N'3', N'15', N'0', N'', N'', N'', N'0', N'0', 180, 7, N'', N'', 15, 5, N'1', N'4', 0, N'', N'', N'', 2, N'', NULL, N'Potatoes, Vegetable Oil (Contains one or more of the following: Corn, Cottonseed, or Sunflower Oil), and Salt.', N'', N'', N'0', N'10', 0, N'2', NULL, N'10', N'', N'2', N'', N'6', N'', NULL, N'4', NULL, N'', N'', N'', 4, NULL, N'4', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (228, N'', N'', N'28400043656 ', 23, 108, 5.0000, 63, N'Sour Cream & Onion', 17, 11, 4, 311.8, NULL, N'', N'', N'K', N'', N'', 1, 4, 28, N'G', 200, N'', 11, 160, N'90', 10, 15, N'3', N'15', N'0', N'', N'', N'', N'0', N'0', 210, 9, N'', N'', 15, 5, N'1', N'4', 1, N'', N'', N'', 2, N'', NULL, N'Potatoes, Vegetable Oil (Corn, Cottonseed, and/or Sunflower Oil), Nonfat Milk Solids, Salt, Maltodextrin, Onion Powder, Whey, Sour Cream (Cream, Nonfat Milk, Cultures), Dextrose, MSG, Palm Oil, Parsley, Partially Hydrogenated Soybean and Cottonseed Oil, Lactose, Whey Protein Isolate, Buttermilk Solids, Citric Acid, Natural and Artificial Flavor, and Lactic Acid.', N'', N'Contains Milk ingredients.', N'0', N'10', 0, N'0', NULL, N'6', N'', N'4', N'', N'6', N'', NULL, N'4', NULL, N'', N'', N'', 4, NULL, N'', N'2', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (229, N'', N'', N'28400043731 ', 23, 108, 3.2400, 63, N'Wavy', 17, 11.5, 4, 326, NULL, N'', N'', N'OU', N'', N'', 1, 4, 28, N'G', 200, N'', 12, 150, N'90', 10, 15, N'2.5', N'13', N'0', N'', N'', N'', N'0', N'0', 180, 8, N'', N'', 15, 5, N'1', N'4', 0, N'', N'', N'', 2, N'', NULL, N'Potatoes, Vegetable Oil (Contains one or more of the following: Corn, Cottonseed, or Sunflower Oil), and Salt.', N'', N'', N'0', N'10', 0, N'0', NULL, N'6', N'', N'4', N'', N'6', N'', NULL, N'4', NULL, N'', N'', N'', 4, NULL, N'', N'2', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (230, N'', N'', N'28400045018 ', 23, 131, 12.3000, 5, N'Natural Style', 17, 4, 4, 113, NULL, N'', N'', N'USDA Inspected', N'', N'', 1, 4, 28, N'G', 200, N'', 4, 80, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'25', N'9', 520, 22, N'', N'', 5, 2, N'0', N'0', 4, N'', N'', N'', 12, N'24', NULL, N'Beef, Brown Sugar, Dextrose, Sugar, Salt, Hydrolyzed Corn and Soy Protein, Natural Hickory Smoke Flavor, Corn Syrup Solids, Water, Vinegar, Flavorings, Molasses, Sodium Erythorbate, Caramel Color, Citric Acid, Sodium Nitrite. Contains Beef from one or more of the following sources: Australia, Brazil, New Zealand, and the United States.', N'', N'', N'0', N'0', 0, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (231, N'', N'', N'29000070608 ', 37, 146, 11.2400, 62, N'Salted Cashews', 1, 2, 4, 56, NULL, N'', N'', N'OU', N'', N'', 2, 4, 56, N'G', 200, N'', 1, 330, N'250', 28, 43, N'6', N'28', N'', N'', N'', N'', N'0', N'0', 240, 10, N'', N'', 16, 5, N'3', N'11', 0, N'', N'', N'', 9, N'', NULL, N'Cashews, Peanut and/or Cottonseed Oil, Salt.', N'', N'Manufactured on equipment that also processes Peanuts and other Tree Nuts. May contain Peanuts and other Tree Nuts.', N'0', N'0', 2, N'20', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (232, N'', N'', N'29000076006 ', 37, 146, 12.1500, 62, N'Dry Roasted', 11, 24, 4, NULL, NULL, N'', N'', N'K', N'', N'', 1, 4, 28, N'G', 200, N'', 24, 170, N'130', 14, 21, N'2', N'10', N'', N'', N'4', N'7', N'0', N'0', 190, 8, N'190', N'5', 5, 2, N'2', N'10', 2, N'', N'', N'', 8, N'8', NULL, N'Peanuts, Salt, Sugar, Cornstarch, MSG (Flavor Enhancer), Dried Yeast, Gelatin, Hydrolyzed Soy Protein, Paprika, Onion and Garlic Powders, Spices, Natural Flavor.', N'', N'Manufactured on equipment that processes Tree Nuts.', N'0', N'0', 0, N'2', NULL, N'10', N'', N'', N'', N'20', N'', NULL, N'', NULL, N'', N'', N'4', 10, NULL, N'10', N'6', N'', N'6', N'25', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (233, N'', N'', N'29000076501 ', 37, 146, 10.9800, 62, N'Lightly Salted - Dry Roasted', 11, 16, 4, 453, NULL, N'', N'', N'K', N'', N'', 1, 4, 28, N'G', 200, N'39', 16, 160, N'120', 14, 22, N'2', N'10', N'0', N'', N'4.5', N'7', N'0', N'0', 95, 4, N'200', N'6', 5, 2, N'2', N'8', 1, N'', N'', N'', 7, N'7', NULL, N'Peanuts, Salt, Maltodextrin, Cornstarch, Corn Syrup Solids.', N'', N'Contains: Peanut. Manufactured on equipment that processes Tree Nuts.', N'0', N'0', 2, N'8', NULL, N'15', N'', N'', N'', N'15', N'', NULL, N'', NULL, N'', N'', N'', 10, NULL, N'10', N'', N'', N'15', N'30', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (234, N'', N'', N'29000090422 ', 37, 146, 0.9700, 62, N'Salted Peanuts', 17, 2, 4, 57, NULL, N'', N'', N'OU', N'', N'', 2, 4, 57, N'G', 200, N'', 1, 340, N'260', 30, 46, N'4', N'21', N'', N'', N'', N'', N'0', N'0', 270, 11, N'', N'', 10, 3, N'5', N'19', 2, N'', N'', N'', 14, N'', NULL, N'Peanuts, Peanut and/or Cottonseed Oil, Salt.', N'', N'Manufactured on equipment that also processes Tree Nuts. May contain Tree Nuts.', N'0', N'0', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (235, N'', N'', N'34000016105 ', 29, 87, 3.5200, 7, N'Milk Chocolate', 17, 12, 4, 340, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 41, N'G', 200, N'', 8, 230, N'120', 13, 20, N'8', N'40', N'0', N'', N'', N'', N'10', N'3', 35, 1, N'', N'', 24, 8, N'1', N'4', 21, N'', N'', N'', 3, N'', NULL, N'Milk Chocolate (Sugar, Milk, Cocoa Butter, Chocolate, Soy Lecithin, and Vanillin - Artificial Flavor).', N'', N'Manufactured on the same equipment that processes other Tree Nuts.', N'0', N'0', 8, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (236, N'', N'', N'34000048786 ', 29, 143, 14.1900, 10, N'Pack-a-Snack', 17, 4.8, 4, 136, NULL, N'', N'', N'OU-D', N'', N'', 0.6, 4, 17, N'G', 200, N'', 8, 80, N'40', 4.5, 7, N'3', N'15', N'0', N'', N'', N'', N'', N'', 25, 1, N'', N'', 10, 3, N'-1', N'3', 8, N'', N'', N'', -1, N'', NULL, N'Corn Syrup, Sugar, Coconut, Vegetable Oil (Palm, Shea, Sunflower and/or Safflower Oil), Almonds, Chocolate, Whey (Milk,), Contains 2% or less of: Nonfat Milk, Partially Hydrogenated Vegetable Oil (Soybean and Palm Oil), Milk Fat, Salt, Cocoa, Soy Lecithin, Natural and Artificial Flavor, Hydrolyzed Milk Protein, Sodium Metabisulfite and Sulfur Dioxide - to maintain freshness, Caramel Color.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (237, N'', N'', N'34000120314 ', 29, 84, 13.8600, 7, N'Milk Chocolate - Big Bag', 17, 19.75, 4, 559, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 41, N'G', 200, N'9', 14, 230, N'120', 13, 20, N'8', N'40', N'0', N'', N'', N'', N'10', N'3', 35, 1, N'', N'', 24, 8, N'1', N'4', 21, N'', N'', N'', 3, N'', NULL, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Lactose, Milk Fat, Soy Lecithin and PGPR - Emulsifiers, and Vanillin - Artificial Flavor).', N'', N'', N'0', N'0', 8, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (238, N'', N'', N'34000120352 ', 29, 84, 1.8500, 7, N'Milk Chocolate - Big Bag', 17, 19.75, 4, 559, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 41, N'G', 200, N'9', 14, 230, N'120', 13, 20, N'8', N'40', N'0', N'', N'', N'', N'10', N'3', 35, 1, N'', N'', 24, 8, N'1', N'4', 21, N'', N'', N'', 3, N'', NULL, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Lactose, Milk Fat, Soy Lecithin and PGPR - Emulsifiers, and Vanillin - Artificial Flavor).', N'', N'', N'0', N'0', 8, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (239, N'', N'', N'34000120864 ', 29, 84, 1.6200, 7, N'Milk Chocolate - Big Bag', 17, 18.5, 4, 524, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 41, N'G', 200, N'9', 13, 200, N'100', 12, 18, N'7', N'35', N'0', N'', N'', N'', N'10', N'3', 35, 1, N'', N'', 25, 8, N'1', N'4', 23, N'', N'', N'', 3, N'', NULL, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Lactose, Milk Fat, Soy Lecithin,  Vanillin - Artificial Flavor, PGPR - Emulsifier).', N'', N'', N'0', N'0', 8, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (240, N'', N'', N'34000122530 ', 29, 84, 1.3200, 7, N'Chocolate Mint', 17, 8.5, 4, 240, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 41, N'G', 200, N'', 6, 230, N'120', 13, 20, N'8', N'40', N'0', N'', N'', N'', N'10', N'3', 35, 1, N'', N'', 24, 8, N'1', N'4', 22, N'', N'', N'', 3, N'', NULL, N'Milk Chocolate (Sugar, Milk, Cocoa Butter, Chocolate, Cocoa processed with Alkali, Nonfat Milk, Milk Fat, Soy Lecithin and PGPR - Emulsifiers, and Vanillin - Artificial Flavor) and Oil of Peppermint.', N'', N'Manufactured on the same equipment that processes Almonds.', N'0', N'0', 8, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (241, N'', N'', N'34000126033 ', 29, 84, 0.9300, 7, N'filled with Caramel', 17, 8.5, 4, 240, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 42, N'G', 200, N'', 6, 200, N'80', 9, 14, N'6', N'30', N'', N'', N'', N'', N'10', N'3', 70, 2, N'', N'', 27, 9, N'', N'', 23, N'', N'', N'', 3, N'', NULL, N'Milk Chocolate (Sugar, Cocoa Butter, Chocolate, Milk, Nonfat Milk, Soy Lecithin, PGPR - Emulsifier, and Vanillin - Artificial Flavor), Corn Syrup, Sugar, High Fructose Corn Syrup, Sorbitol, Nonfat Milk, Dairy Butter (Milk), Contains 2% or less of: Milk Fat (Milk), Soy Lecithin, Disodium Phosphate, Sodium Bicarbonate, Vanillin - Artificial Flavor.', N'', N'', N'2', N'', 6, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (242, N'', N'', N'34000127023 ', 29, 84, 3.9000, 7, N'Chocolate Truffle', 17, 11, 4, 311, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 42, N'G', 200, N'', 7, 230, N'130', 14, 22, N'9', N'45', N'0', N'', N'', N'', N'-5', N'1', 30, 1, N'', N'', 25, 8, N'2', N'8', 22, N'', N'', N'', 2, N'', NULL, N'Sugar, Chocolate, Refined Palm Kernel Oil, Cocoa Butter, Whey (Milk), Cocoa, Nonfat Milk, Milk Fat, Contains 2% or less of: Milk, Soy Lecithin, Salt, Vanillin - Artificial Flavor, and Peanuts.', N'', N'Contains Peanut, Soy and Milk', N'0', N'0', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (243, N'', N'', N'34000128631 ', 29, 84, 11.6100, 7, N'filled with Cherry Crme', 17, 1.3, 4, 36, NULL, N'', N'', N'OU-D', N'', N'', 1.3, 4, 36, N'G', 200, N'', 1, 190, N'110', 12, 18, N'7', N'35', N'0', N'', N'', N'', N'5', N'2', 35, 1, N'', N'', 22, 7, N'0', N'0', 21, N'', N'', N'', 2, N'', NULL, N'Milk Chocolate (Sugar, Milk, Cocoa Butter, Chocolate, Lactose, Nonfat Milk, Soy Lecithin, Milk Fat, PGPR - Emulsifier, Vanillin - Artificial Flavor), Sugar, Vegetable Oil (Palm Kernel, Canola, and Palm Oil), Contains 2% or less of: Whey (Milk), Cornstarch, Soy Lecithin, Salt, Artificial Flavor, PGPR - Emulsifier, Artificial Color (Red 40 Lake).', N'', N'Manufactured on the same equipment that processes Eggs/Peanuts/Tree Nuts.', N'0', N'0', 6, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (244, N'', N'', N'34000128785 ', 29, 84, 11.3200, 7, N'Mint Truffle', 17, 11, 4, 311, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 41, N'G', 200, N'', 8, 210, N'130', 14, 22, N'8', N'40', N'0', N'', N'', N'', N'-5', N'1', 35, 1, N'', N'', 25, 8, N'1', N'4', 22, N'', N'', N'', 2, N'', NULL, N'Semi-Sweet Chocolate (Sugar, Chocolate, Cocoa Butter, Milk Fat, Soy Lecithin, Vanillin - Artificial Flavor, Milk), Sugar, Vegetable Oil (Palm Kernel, Canola, and Palm Oil), Whey (Milk), Nonfat Milk, Contains 2% or less of: Milk, Cornstarch, Oil of Peppermint Soy Lecithin, Salt, Artificial Color (Yellow 5 Lake, Blue 1 Lake).', N'', N'Manufactured on the same equipment that processes Peanuts.', N'0', N'0', 2, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (245, N'', N'', N'34000130009 ', 29, 84, 12.0800, 7, N'Milk Chocolate', 17, 12, 4, 340, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 41, N'G', 200, N'9', 8, 200, N'100', 12, 18, N'7', N'35', N'0', N'', N'', N'', N'10', N'3', 35, 1, N'', N'', 25, 8, N'1', N'4', 23, N'', N'', N'', 3, N'', NULL, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Lactose, Milk Fat, Soy Lecithin, Vanillin - Artificial Flavor, PGPR - Emulsifier).', N'', N'', N'0', N'0', 8, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (246, N'', N'', N'34000132492 ', 29, 84, 12.2200, 7, N'Milk Chocolate - Family Size', 17, 14.8, 4, 419, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 41, N'G', 200, N'', 10, 230, N'120', 13, 20, N'8', N'40', N'0', N'', N'', N'', N'10', N'3', 35, 1, N'', N'', 24, 8, N'1', N'4', 21, N'', N'', N'', 3, N'', NULL, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Lactose, Milk Fat, Soy Lecithin and PGPR - Emulsifiers, and Vanillin - Artificial Flavor).', N'', N'', N'0', N'0', 8, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (247, N'', N'', N'34000139187 ', 29, 84, 5.0700, 7, N'Milk Chocolate', 17, 9.2, 4, 260, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 41, N'G', 200, N'', 6, 230, N'120', 13, 20, N'8', N'40', N'0', N'', N'', N'', N'10', N'3', 35, 1, N'', N'', 24, 8, N'1', N'4', 21, N'', N'', N'', 3, N'', NULL, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Lactose, Milk Fat, Soy Lecithin and PGPR - Emulsifiers, and Vanillin - Artificial Flavor).', N'', N'', N'0', N'0', 8, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (248, N'', N'', N'34000160334 ', 29, 84, 14.2200, 7, N'Milk Chocolate', 17, 12, 4, 340, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 41, N'G', 200, N'', 8, 200, N'110', 12, 18, N'7', N'35', N'0', N'', N'', N'', N'10', N'3', 35, 1, N'', N'', 25, 8, N'1', N'4', 23, N'', N'', N'', 3, N'', NULL, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Lactose [Milk], Milk Fat, Soy Lecithin and PGPR - Emulsifiers, Vanillin - Artificial Flavor).', N'', N'', N'0', N'0', 8, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (249, N'', N'', N'34000160358 ', 29, 84, 9.4300, 7, N'Special Dark', 17, 12, 4, 340, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 41, N'G', 200, N'', 8, 180, N'110', 12, 18, N'8', N'40', N'0', N'', N'', N'', N'-5', N'1', 15, 1, N'', N'', 25, 8, N'3', N'12', 21, N'', N'', N'', 2, N'', NULL, N'Sweet Chocolate (Sugar, Chocolate, Cocoa Butter, Cocoa processed with Alkali, Milk Fat, Lactose, Soy Lecithin, PGPR - Emulsifier, Vanillin - Artificial Flavor, Milk).', N'', N'', N'0', N'0', 0, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (250, N'', N'', N'34000171132 ', 29, 83, 7.6100, 10, N'Milk Chocolate with Almonds', 25, 5, 4, 141, NULL, N'', N'', N'OU-D', N'', N'', 1.25, 4, 36, N'G', 200, N'', 4, 200, N'120', 13, 20, N'7', N'35', N'0', N'', N'', N'', N'5', N'2', 25, 1, N'', N'', 18, 6, N'1', N'4', 16, N'', N'', N'', 3, N'', NULL, N'Milk Chocolate (Sugar, Milk, Cocoa Butter, Chocolate, Soy Lecithin, and Vanillin - Artificial Flavor, and Almonds.', N'', N'Manufactured on the same equipment that processes Peanuts.', N'0', N'0', 8, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (251, N'', N'', N'34000173136 ', 29, 86, 5.1400, 10, N'Peanuts in Milk Chocolate', 25, 5, 4, 141, NULL, N'', N'', N'OU-D', N'', N'', 1.25, 4, 36, N'G', 200, N'', 4, 200, N'110', 12, 18, N'5', N'25', N'0', N'', N'', N'', N'-5', N'1', 15, 1, N'', N'', 20, 7, N'1', N'4', 17, N'', N'', N'', 4, N'', NULL, N'Milk Chocolate (Sugar, Cocoa Butter, Chocolate, Nonfat Milk, Lactose, Milk, Milk Fat, Soy Lecithin and PGPR - Emulsifiers, and Vanillin - Artificial Flavor), and Peanuts.', N'', N'Manufactured on the same equipment that processes Almonds.', N'0', N'0', 2, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (252, N'', N'', N'34000174133 ', 29, 88, 10.4700, 10, N'Mildly Sweet', 25, 5, 4, 141, NULL, N'', N'', N'OU-D', N'', N'', 1.25, 4, 36, N'G', 200, N'', 4, 200, N'100', 11, 17, N'7', N'35', N'0', N'', N'', N'', N'0', N'0', 0, 0, N'', N'', 22, 7, N'2', N'8', 18, N'', N'', N'', 2, N'', NULL, N'Sugar, Chocolate, Cocoa Butter, Cocoa processed with Alkali, Milk Fat, Lactose (Milk), Soy Lecithin, PGPR (Emulsifier), Vanillin - Artificial Flavor, and Milk.', N'', N'Manufactured on the same equipment that processes Peanuts/Almonds.', N'0', N'0', 0, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (253, N'', N'', N'34000177134 ', 29, 90, 6.4800, 10, N'Creamy Milk Chocolate with Almonds & Toffee Chips', 25, 5, 4, 141, NULL, N'', N'', N'OU-D', N'', N'', 1.25, 4, 36, N'G', 200, N'', 4, 190, N'110', 12, 18, N'6', N'30', N'0', N'', N'', N'', N'10', N'3', 45, 2, N'', N'', 19, 6, N'', N'', 18, N'', N'', N'', 3, N'', NULL, N'Milk Chocolate (Sugar, Milk, Cocoa Butter, Chocolate, Nonfat Milk, Soy Lecithin and PGPR - Emulsifiers, Vanillin - Artificial Flavor), Almonds (Roasted in Cocoa Butter and/or Sunflower Oil), Sugar, Dairy Butter, Milk, and Salt.', N'', N'Manufactured on the same equipment that processes Peanuts.', N'', N'', 8, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (254, N'', N'', N'34000195022 ', 29, 88, 10.7700, 10, N'Pack-a-Snack', 17, 3.92, 4, 111, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 42, N'G', 200, N'', 2.5, 220, N'110', 13, 20, N'8', N'40', N'0', N'', N'', N'', N'0', N'0', 50, 2, N'', N'', 26, 9, N'3', N'12', 21, N'', N'', N'', 2, N'', NULL, N'Sugar, Chocolate, Cocoa Butter, Cocoa processed with Alkali, Milk Fat, Lactose (Milk), Soy Lecithin / PGPR -Emulsifier, Vanillin - Artificial Flavor, and Milk.', N'', N'Manufactured on the same equipment that processes Almonds.', N'0', N'0', 0, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (255, N'', N'', N'34000197163 ', 29, 90, 9.8300, 10, N'Creamy Milk Chocolate - 1/2 Pound Bar', 25, 8, 4, 226, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 42, N'G', 200, N'', 5, 230, N'120', 13, 20, N'8', N'40', N'0', N'', N'', N'', N'10', N'3', 40, 2, N'', N'', 24, 8, N'', N'', 23, N'', N'', N'', 4, N'', NULL, N'Milk Chocolate (Sugar, Milk, Cocoa Butter, Chocolate, Nonfat Milk, Soy Lecithin and PGPR - Emulsifiers, Vanillin - Artificial Flavor).', N'', N'Manufactured on the same equipment that processes Peanuts / Almonds.', N'', N'', 10, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (256, N'', N'', N'34000214211 ', 29, 85, 8.8800, 7, N'Big Bag', 17, 19.75, NULL, 559, NULL, N'', N'', N'OU-D', N'Mexico', N'', 1.5, 4, 43, N'G', 200, N'5', 13, 210, N'110', 13, 20, N'8', N'40', N'0', N'', N'', N'', N'-5', N'2', 55, 2, N'', N'', 25, 8, N'2', N'8', 22, N'', N'', N'', 3, N'', NULL, N'Sugar, Chocolate, Cocoa Butter, Vegetable Oil (Cocoa Butter, Palm, Shea, Sunflower and or Safflower Oil), Peanuts, Nonfat Milk, Milk, Lactose (Milk),  Crisp Rice, Milk Fat, Contains 2% or less of: Cocoa processed with Alkali, Whey (Milk), Soy Lecithin, Salt, PGPR-Emulsifier, Artificial Flavor, Malt.', N'', N'', N'0', N'0', 4, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (257, N'', N'', N'34000216796 ', 29, 85, 3.2500, 7, N'Family Size', 17, 14.8, 4, 419, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 43, N'G', 200, N'', 10, 230, N'120', 13, 20, N'7', N'35', N'0', N'', N'', N'', N'5', N'2', 30, 1, N'', N'', 26, 9, N'1', N'4', 22, N'', N'', N'', 3, N'', NULL, N'Sugar, Chocolate, Cocoa Butter, Milk, Peanuts, Nonfat Milk, Crisped Rice, Lactose (Milk), Contains 2% or less of: Milk Fat, Cocoa processed with Alkali, Soy Lecithin, PGPR (Emulsifier), Salt, Malt, and Vanillin - Artificial Flavor.', N'', N'Manufactured on the same equipment that processes Tree Nuts.', N'0', N'0', 4, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (258, N'', N'', N'34000220007 ', 29, 83, 1.7800, 10, N'Milk Chocolate - King Size', 25, 46.8, 4, 1.31, NULL, N'', N'', N'OU-D', N'', N'', 2.6, 4, 73, N'G', 200, N'', 18, 400, N'210', 23, 35, N'14', N'70', N'0', N'', N'', N'', N'15', N'5', 65, 3, N'', N'', 42, 14, N'2', N'8', 37, N'', N'', N'', 5, N'', NULL, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Lactose, Milk Fat, Soy Lecithin and PGPR - Emulsifiers, and Vanillin - Artificial Flavor).', N'', N'', N'0', N'0', 15, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (259, N'', N'', N'34000249510 ', 29, 83, 5.7500, 10, N'Milk Chocolate filled with Creamy Peanut Butter', 25, 4.5, 4, 127, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 42, N'G', 200, N'', 3, 240, N'130', 15, 23, N'8', N'40', N'0', N'', N'', N'', N'5', N'2', 90, 4, N'', N'', 22, 7, N'1', N'4', 20, N'', N'', N'', 4, N'', NULL, N'Milk Chocolate (Sugar, Milk, Chocolate, Cocoa Butter, Milk Fat, Soy Lecithin, PGPR - Emulsifier, Vanillin - Artificial Flavor), Peanuts, Sugar, Dextrose, Partially Hydrogenated Vegetable Oil (Palm Kernel and Palm Oil), Cocoa Butter, Contains 2% or less of: Salt, Cornstarch, TBHQ - a Preservative.', N'', N'', N'0', N'0', 6, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (260, N'', N'', N'34000343072 ', 29, 89, 1.8300, 7, N'All Natural Extra Dark', 2, 3.5, 4, 99, NULL, N'', N'', N'OU-D', N'', N'', 0.39, 4, 11, N'G', 200, N'', 9, 60, N'35', 4, 6, N'2.5', N'13', N'0', N'', N'', N'', N'0', N'0', 0, 0, N'', N'', 6, 2, N'1', N'4', 4, N'', N'', N'', -1, N'', NULL, N'Semi-Sweet Chocolate (Chocolate, Sugar, Cocoa, Milk Fat, Cocoa Butter, Organic Soy Lecithin, Natural Vanilla Flavor, Milk).', N'', N'', N'0', N'0', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (261, N'', N'', N'34000988020 ', 29, 84, 8.6400, 7, N'Cookies''n''Crme - Big Bag', 17, 18.8, 4, 532, NULL, N'', N'', N'OU-D', N'', N'', 1.5, 4, 42, N'G', 200, N'11', 13, 220, N'100', 12, 18, N'7', N'35', N'0', N'', N'', N'', N'5', N'2', 90, 4, N'', N'', 26, 9, N'0', N'0', 19, N'', N'', N'', 3, N'', NULL, N'Sugar, Vegetable Oil (Cocoa Butter, Palm Shea, Sunflower and/or Safflower Oil), Nonfat Milk, Corn Syrup Solids, Enriched Wheat Flour (Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, and Folic Acid), Milk Fat, Contains 2% or less of: Partially Hydrogenated Vegetable Oil (Soybean and/or Cottonseed Oil), Cocoa processed with Alkali, Whey (Milk), Chocolate, Soy Lecithin, High Fructose Corn Syrup, Sodium Bicarbonate, Salt, Natural and Artificial Flavor, Tocopherols to maintain freshness, PGPR Emulsifier, Caramel Color.', N'', N'', N'0', N'0', 10, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (262, N'', N'', N'36632001016 ', 77, 42, 8.1900, 47, N'Vanilla', 20, 6, 4, 170, NULL, N'', N'', N'OU', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 150, N'25', 2.5, 4, N'1.5', N'8', N'0', N'', N'', N'', N'10', N'3', 100, 4, N'330', N'9', 25, 8, N'', N'', 25, N'', N'', N'', 7, N'14', NULL, N'Cultured Grade A Reduced Fat Milk, Sugar, Natural Vanilla Flavor, Pectin.', N'Keep Refrigerated. Contains Active Yogurt Cultures including l. Acidophilus.', N'', N'', N'2', 25, N'', NULL, N'', N'', N'', N'25', N'', N'', NULL, N'', NULL, N'15', N'', N'', 20, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (263, N'', N'', N'36632001801 ', 77, 46, 3.4200, 58, N'Plain', 20, 6, 4, 170, NULL, N'', N'', N'OU-D', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 80, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'5', N'2', 115, 5, N'380', N'11', 12, 4, N'0', N'0', 12, N'', N'', N'', 8, N'16', NULL, N'Cultured Grade A Non Fat Milk, Pectin.', N'Keep Refrigerated. Contains Active Yogurt Cultures including l. Acidophilus.', N'', N'0', N'4', 30, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (264, N'', N'', N'36632006202 ', 77, 45, 11.1100, 58, N'Peach', 20, 6, 4, 170, NULL, N'', N'', N'K', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 90, N'0', 0, 0, N'0', N'0', N'', N'', N'', N'', N'-5', N'1', 95, 4, N'270', N'8', 17, 6, N'', N'', 12, N'', N'', N'', 6, N'12', NULL, N'Nonfat Yogurt [Cultured Grade A Non Fat Milk, Modified Corn Starch, Kosher Gelatin, Vitamin A Palmitate, Vitamin D3], Fructose Syrup, Peaches, Contains less than 1% of Modified Corn Starch, Natural Flavor, Aspartame, Annatto Extract (For Color), Potassium Sorbate (to maintain freshness), Malic Acid, Red 40.', N'', N'', N'8', N'', 15, N'', 20, N'', N'', N'', N'15', N'', N'', NULL, N'', NULL, N'10', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (265, N'', N'', N'36632006219 ', 77, 45, 10.9800, 58, N'Strawberry Banana', 20, 6, 4, 170, NULL, N'', N'', N'K', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 90, N'0', 0, 0, N'0', N'0', N'', N'', N'', N'', N'-5', N'1', 105, 4, N'290', N'8', 17, 6, N'', N'', 12, N'', N'', N'', 6, N'12', NULL, N'Nonfat Yogurt [Cultured Grade A Non Fat Milk, Modified Corn Starch, Kosher Gelatin, Vitamin A Palmitate, Vitamin D3], Strawberries, Fructose Syrup, Banana Puree, Contains less than 1% of Modified Corn Starch, Natural Flavor, Aspartame, Sodium Citrate, Potassium Sorbate (to maintain freshness), Malic Acid, Annatto Extract (for color), Red 40.', N'Keep Refrigerated. Contains Active Yogurt Cultures including l. Acidophilus.', N'', N'6', N'2', 15, N'', 15, N'', N'', N'', N'15', N'', N'', NULL, N'', NULL, N'10', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (266, N'', N'', N'36632006226 ', 77, 45, 2.8900, 58, N'Blueberry', 20, 6, 4, 170, NULL, N'', N'', N'K', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 90, N'0', 0, 0, N'0', N'0', N'', N'', N'', N'', N'-5', N'1', 95, 4, N'270', N'8', 17, 6, N'', N'', 13, N'', N'', N'', 6, N'12', NULL, N'Nonfat Yogurt [Cultured Grade A Non Fat Milk, Modified Corn Starch, Kosher Gelatin, Vitamin A Palmitate, Vitamin D3], Blueberries, Fructose Syrup, Contains less than 1% of Modified Corn Starch, Elderberry Juice Concentrate (for color), Natural Flavor, Aspartame, Potassium Sorbate (to maintain freshness).', N'Keep Refrigerated. Contains Active Yogurt Cultures including l. Acidophilus.', N'', N'6', N'', 15, N'', 20, N'', N'', N'', N'15', N'', N'', NULL, N'', NULL, N'10', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (267, N'', N'', N'36632006240 ', 77, 45, 13.0000, 58, N'Raspberry', 20, 6, 4, 170, NULL, N'', N'', N'K', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 60, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'-5', N'1', 95, 4, N'240', N'7', 11, 4, N'', N'', 7, N'', N'', N'', 5, N'10', NULL, N'Nonfat Yogurt [Cultured Grade A Non Fat Milk, Modified Corn Starch, Kosher Gelatin, Vitamin A Palmitate, Vitamin D3], Water, Raspberry Puree, Contains less than 1% of Modified Corn Starch, Natural Flavor, Sodium Citrate, Malic Acid, Sucralose, Potassium Sorbate (to maintain freshness), Red 40, Blue 1.', N'Contains Active Yogurt Cultures', N'', N'10', N'', 20, N'', 20, N'', N'', N'', N'20', N'', N'', NULL, N'', NULL, N'10', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (268, N'', N'', N'36632006257 ', 77, 45, 3.8200, 58, N'Strawberry', 20, 6, 4, 170, NULL, N'', N'', N'K', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 90, N'0', 0, 0, N'0', N'0', N'', N'', N'', N'', N'-5', N'1', 120, 5, N'290', N'8', 17, 6, N'', N'', 12, N'', N'', N'', 6, N'12', NULL, N'Nonfat Yogurt [Cultured Grade A Non Fat Milk, Modified Corn Starch, Kosher Gelatin, Vitamin A Palmitate, Vitamin D3], Strawberries, Fructose Syrup, Contains less than 1% of Modified Corn Starch, Natural Vanilla Flavor, Aspartame, Sodium Citrate, Malic Acid, Potassium Sorbate (to maintain freshness), Red 40.', N'', N'Phenylketonurics: Contains phenylalanine.', N'6', N'2', 15, N'', 15, N'', N'', N'', N'15', N'', N'', NULL, N'', NULL, N'10', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (269, N'', N'', N'36632006608 ', 77, 45, 5.0700, 58, N'Vanilla', 20, 6, 4, 170, NULL, N'', N'', N'K', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 60, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'-5', N'1', 80, 3, N'230', N'7', 10, 3, N'', N'', 7, N'', N'', N'', 5, N'10', NULL, N'Nonfat Yogurt [Cultured Grade A Non Fat Milk, Modified Corn Starch, Kosher Gelatin, Vitamin A Palmitate, Vitamin D3], Water, Contains less than 1% of Modified Corn Starch, Natural and Artificial Flavors, Sucralose, Potassium Sorbate (to maintain freshness), Citric Acid, Annatto Extract (for color), Caramel Color, Sodium Citrate.', N'Keep Refrigerated', N'', N'10', N'', 20, N'', 20, N'', N'', N'', N'20', N'', N'', NULL, N'', NULL, N'10', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (270, N'', N'', N'36632026156 ', 77, 43, 4.0400, 47, N'Strawberry', 20, 4, 4, 113, NULL, N'', N'', N'K', N'', N'', 4, 4, 113, N'G', 200, N'', 1, 110, N'20', 2, 3, N'1', N'5', N'0', N'', N'', N'', N'5', N'2', 75, 3, N'220', N'6', 19, 6, N'0', N'0', 17, N'', N'', N'', 5, N'10', NULL, N'Cultured Grade A Reduced Fat Milk, Strawberry, Fructose Syrup, Sugar, Contains less than 1% of Fructose, Whey Protein Concentrate, Corn Starch, Modified Corn Starch, Kosher Gelatin, Natural Flavor, Carmine (for Color), Sodium Citrate, Malic Acid.', N'Keep Refrigerated. Contains the Active Cultures L. Bulgaricus, S.Thermophilus and Bifidobacterium.', N'Manufactured in a plant processing Wheat.', N'0', N'0', 15, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (271, N'', N'', N'36632026200 ', 77, 43, 7.3400, 47, N'Peach', 20, 4, 4, 113, NULL, N'', N'', N'K', N'', N'', 4, 4, 113, N'G', 200, N'', 1, 110, N'20', 2, 3, N'1', N'5', N'0', N'', N'', N'', N'10', N'3', 70, 3, N'230', N'7', 19, 6, N'0', N'0', 17, N'', N'', N'', 5, N'10', NULL, N'Cultured Grade A Reduced Fat Milk, Fructose Syrup, Peach, Sugar, Contains less than 1% of Fructose, Whey Protein Concentrate, Corn Starch, Modified Corn Starch, Kosher Gelatin, Natural Flavor, Annatto Extract and Carrot Juice Concentrate (for Color), Sodium Citrate, Malic Acid.', N'Keep Refrigerated. Contains the Active Cultures L. Bulgaricus, S.Thermophilus and Bifidobacterium.', N'Manufactured in a plant processing Wheat.', N'0', N'0', 15, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (272, N'', N'', N'36632026231 ', 77, 43, 12.3600, 47, N'Vanilla', 20, 4, 4, 113, NULL, N'', N'', N'K', N'', N'', 4, 4, 113, N'G', 200, N'', 1, 110, N'20', 2, 3, N'1.5', N'8', N'0', N'', N'', N'', N'10', N'3', 70, 3, N'230', N'7', 19, 6, N'0', N'0', 17, N'', N'', N'', 5, N'10', NULL, N'Cultured Grade A Reduced Fat Milk, Fructose Syrup, Sugar, Contains less than 1% of Fructose, Whey Protein Concentrate, Corn Starch, Modified Corn Starch, Kosher Gelatin, Natural Vanilla Flavor, Sodium Citrate, Malic Acid.', N'Keep Refrigerated. Contains the Active Cultures L. Bulgaricus, S.Thermophilus and Bifidobacterium.', N'Manufactured in a plant processing Wheat.', N'0', N'0', 15, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (273, N'', N'', N'36632026309 ', 77, 44, 10.5500, 58, N'Strawberry', 14, 16, 4, 452, NULL, N'', N'', N'K', N'', N'', 4, 4, 113, N'G', 200, N'', 4, 70, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'-5', N'1', 80, 3, N'220', N'6', 13, 4, N'3', N'12', 8, N'', N'', N'', 5, N'10', NULL, N'Cultured Grade A Non Fat Milk, Strawberries, Inulin, Water, Contains less than 1% of Fructose, Corn Starch, Modified Corn Starch, Natural Flavor, Kosher Gelatin, Carmine (for Color), Sodium Citrate, Sucralose, Malic Acid.', N'Keep Refrigerated. Contains the Active Cultures L. Bulgaricus, S.Thermophilus and Bifidobacterium.', N'Manufactured in a plant processing Wheat.', N'0', N'0', 15, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (274, N'', N'', N'36632026316 ', 77, 44, 9.6300, 58, N'Vanilla', 14, 16, 4, 452, NULL, N'', N'', N'K', N'', N'', 4, 4, 113, N'G', 200, N'', 4, 70, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'-5', N'1', 75, 3, N'230', N'7', 13, 4, N'3', N'12', 9, N'', N'', N'', 5, N'10', NULL, N'Cultured Grade A Non Fat Milk, Inulin, Water, Contains less than 1% of Fructose, Corn Starch, Modified Corn Starch, Kosher Gelatin, Natural Vanilla Flavor, Sodium Citrate, Malic Acid, Sucralose.', N'Keep Refrigerated. Contains the Active Cultures L. Bulgaricus, S.Thermophilus and Bifidobacterium.', N'Manufactured in a plant processing Wheat.', N'0', N'0', 20, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (275, N'', N'', N'36632026330 ', 77, 44, 11.1500, 58, N'Peach', 14, 16, 4, 452, NULL, N'', N'', N'K', N'', N'', 4, 4, 113, N'G', 200, N'', 4, 70, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'-5', N'1', 70, 3, N'230', N'7', 13, 4, N'3', N'12', 9, N'', N'', N'', 5, N'10', NULL, N'Cultured Grade A Non Fat Milk, Peach, Inulin, Water, Contains less than 1% of Fructose, Corn Starch, Modified Corn Starch, Kosher Gelatin, Natural Flavor, Annatto Extract and Carrot Juice Concentrate (for Color), Sodium Citrate, Malic Acid, Sucralose.', N'Keep Refrigerated. Contains the Active Cultures L. Bulgaricus, S.Thermophilus and Bifidobacterium.', N'', N'0', N'0', 15, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (276, N'', N'', N'36632026392 ', 77, 44, 2.7300, 58, N'Raspberry', 14, 16, 4, 452, NULL, N'', N'', N'K', N'', N'', 4, 4, 113, N'G', 200, N'', 4, 70, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'-5', N'1', 75, 3, N'230', N'7', 13, 4, N'3', N'12', 8, N'', N'', N'', 5, N'10', NULL, N'Cultured Grade A Non Fat Milk, Raspberry Puree, Water, Inulin, Contains less than 1% of Fructose, Corn Starch, Modified Corn Starch, Natural Flavor, Kosher Gelatin, Carmine (for Color), Sodium Citrate, Malic Acid, Sucralose.', N'Keep Refrigerated. Contains the Active Cultures L. Bulgaricus, S.Thermophilus and Bifidobacterium.', N'', N'0', N'0', 15, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (277, N'', N'', N'38000008610 ', 36, 104, 12.8800, 8, N'', 24, 1.25, 4, 35, NULL, N'', N'', N'', N'', N'', 1.25, 4, 35, N'G', 200, N'', 1, 110, N'5', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 210, 9, N'', N'', 27, 9, N'4', N'16', 11, N'', N'', N'', 3, N'', NULL, N'Whole Wheat, Raisins, Wheat Bran, Sugar, High Fructose Corn Syrup, Salt, Malt Flavoring, Niacinamide, Reduced Iron, Zinc Oxide, Pyridoxine Hydrochloride (Vitamin B6), Riboflavin (Vitamin B2), Thiamin Hydrochloride (Vitamin B1), Vitamin A Palmitate, Folic Acid, Vitamin B12 and Vitamin D.', N'', N'Contains Wheat ingredients.', N'6', N'0', 0, N'15', 8, N'', N'', N'15', N'15', N'15', N'', NULL, N'15', 15, N'15', N'', N'', 10, NULL, N'15', N'6', N'', N'6', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (278, N'', N'', N'38000035302 ', 36, 101, 3.3500, 8, N'', 2, 12, 4, 340, NULL, N'', N'', N'K', N'', N'', 1, 4, 29, N'G', 200, N'', 12, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 220, 9, N'35', N'1', 25, 8, N'-1', N'2', 3, N'', N'21', N'', 2, N'', NULL, N'Milled Corn, Rice, Brown Sugar, Salt, Malt Flavoring, Baking Soda, Ascorbic Acid (Vitamin C), Iron, Niacinamide, Turmeric Color, Zinc Oxide, Pyridoxine Hydrochloride (Vitamin B6), Riboflavin (Vitamin B2), Thiamin Hydrochloride (Vitamin B1), Vitamin A Palmitate, Folic Acid, Vitamin B12 and Vitamin D.', N'', N'Corn used in this product Contains traces of Soybeans.', N'10', N'10', 0, N'45', 10, N'', N'', N'35', N'35', N'35', N'', NULL, N'35', 70, N'35', N'', N'', NULL, NULL, N'', N'10', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (279, N'', N'', N'38000299995 ', 36, 103, 3.5700, 8, N'', 2, 15, 4, 425, NULL, N'', N'', N'QAI Organic, USDA Organic', N'', N'', 2.1, 4, 59, N'G', 200, N'', 7, 190, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 380, 16, N'220', N'6', 46, 15, N'8', N'32', 16, N'', N'22', N'', 5, N'', NULL, N'Organic Whole Wheat, Organic Sugar Coated Raisins (Organic Raisins, Organic Sugar), Organic Wheat Bran, Organic Evaporated Cane Juice Crystals, Organic Evaporated Cane Juice Syrup, Sea Salt, Organic Malt Extract, Niacinamide, Reduced Iron, Zinc Oxide, Pyridoxine Hydrochloride (Vitamin B6), Riboflavin (Vitamin B2), Thiamin Hydrochloride (Vitamin B1), Vitamin A Palmitate, Folic Acid, Vitamin B12 and Vitamin D.', N'', N'Contains Wheat ingredients.', N'10', N'0', 0, N'25', 10, N'', N'', N'25', N'25', N'25', N'', NULL, N'25', 25, N'25', N'', N'', NULL, NULL, N'', N'10', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (280, N'', N'', N'38000318382 ', 36, 102, 13.7000, 8, N'', 2, 17, 4, 482, NULL, N'', N'', N'K', N'', N'', 1.1, 4, 30, N'G', 200, N'', 16, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 140, 6, N'20', N'1', 27, 9, N'1', N'3', 11, N'', N'15', N'', 1, N'', NULL, N'Milled Corn, Sugar, Malt Flavoring, High Fructose Corn Syrup, Salt, Sodium Ascorbate and Ascorbic Acid (Vitamin C), Niacinamide, Iron, Pyridoxine Hydrochloride (Vitamin B6), Riboflavin (Vitamin B2), Thiamin Hydrochloride (Vitamin B1), Vitamin A Palmitate, Folic Acid, BHT (Preservative), Vitamin B12 and Vitamin D.', N'', N'Corn used in this product Contains traces of Soybeans.', N'10', N'10', 0, N'25', 10, N'', N'', N'25', N'25', N'25', N'', NULL, N'25', 25, N'25', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (281, N'', N'', N'39400015949 ', 7, 14, 8.8300, 2, N'Homestyle - Tangy Sauce with Bacon & Brown Sugar', 3, 28, 4, 794, NULL, N'', N'', N'', N'', N'', 4, 4, 130, N'G', 200, N'', 6, 140, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 550, 23, N'', N'', 29, 10, N'5', N'20', 12, N'', N'', N'', 6, N'', NULL, N'Prepared White Beans, Water, Brown Sugar, Sugar, Tomato Paste, Bacon, Salt, Corn Starch, Mustard (Water, Vinegar, Mustard Seed, Salt, Turmeric, Spices), Onion Powder, Spices, Extractives of Paprika, Garlic Powder, and Natural Flavor.', N'', N'', N'0', N'0', 4, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (282, N'', N'', N'39400016038 ', 7, 14, 8.8800, 2, N'Onion - Seasoned with Bacon, Brown Sugar & Onion', 3, 28, 4, 794, NULL, N'', N'', N'', N'', N'', 4, 4, 130, N'G', 200, N'', 6, 140, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 550, 23, N'', N'', 29, 10, N'5', N'20', 12, N'', N'', N'', 6, N'', NULL, N'Prepared White Beans, Water, Onions, Brown Sugar, Sugar, Bacon, Salt, Corn Starch, Mustard (Water, Vinegar, Mustard Seed, Salt, Turmeric, Spices), Onion Powder, Caramel Color, Spices, Garlic Powder, and Natural Flavor.', N'', N'', N'0', N'0', 4, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (283, N'', N'', N'39400016144 ', 7, 14, 2.7100, 2, N'Original - Seasoned with Bacon & Brown Sugar', 3, 28, 4, 794, NULL, N'', N'', N'', N'', N'', 4, 4, 130, N'G', 200, N'', 6, 140, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 550, 23, N'', N'', 29, 10, N'5', N'20', 12, N'', N'', N'', 6, N'', NULL, N'Prepared White Beans, Water, Brown Sugar, Sugar, Bacon, Salt, Corn Starch, Mustard (Water, Vinegar, Mustard Seed, Salt, Turmeric, Spices), Onion Powder, Caramel Color, Spices, Garlic Powder, and Natural Flavor.', N'', N'', N'0', N'0', 4, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (284, N'', N'', N'39400016298 ', 7, 14, 1.8300, 2, N'Homestyle - Tangy Sauce with Bacon & Brown Sugar', 3, 55, 4, 1.56, NULL, N'', N'', N'', N'', N'', 4, 4, 130, N'G', 200, N'', 12, 140, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 550, 23, N'', N'', 29, 10, N'5', N'20', 12, N'', N'', N'', 6, N'', NULL, N'Prepared White Beans, Water, Sugar, Brown Sugar, Tomato Paste, Salt, Bacon, Mustard (Water, Vinegar, Mustard Seed, Salt, Turmeric, Spices), Onion Powder, Spices, Extractives of Paprika, Garlic Powder, and Natural Flavor.', N'', N'', N'0', N'0', 4, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (285, N'', N'', N'39400016359 ', 7, 14, 1.6100, 2, N'Vegetarian - Tangy Sauce with Brown Sugar & Spices', 3, 28, 4, 794, NULL, N'', N'', N'OU', N'', N'', 4, 4, 130, N'G', 200, N'', 6, 130, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 550, 23, N'', N'', 29, 10, N'5', N'20', 12, N'', N'', N'', 6, N'', NULL, N'Prepared White Beans, Water, Brown Sugar, Sugar, Tomato Paste, Salt, Corn Starch, Mustard (Water, Vinegar, Mustard Seed, Salt, Turmeric, Spices), Onion Powder, Spices, Extractive of Paprika, Garlic Powder, and Natural Flavor.', N'', N'', N'0', N'0', 4, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (286, N'', N'', N'39400017820 ', 7, 14, 9.7500, 34, N'', 3, 15.8, 4, 448, NULL, N'', N'', N'', N'', N'', 4, 4, 130, N'G', 200, N'', 3.5, 80, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 460, 19, N'280', N'8', 17, 6, N'6', N'24', 0, N'', N'', N'', 6, N'12', NULL, N'Prepared Great Northern Beans, Water, and Salt.', N'', N'', N'0', N'0', 6, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (287, N'', N'', N'39400019565 ', 7, 14, 12.0200, 2, N'Boston Recipe - Rich Molasses, Brown Sugar & Pork', 3, 28, 4, 794, NULL, N'', N'', N'', N'', N'', 4, 4, 130, N'G', 200, N'', 6, 150, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 440, 18, N'', N'', 31, 10, N'5', N'20', 11, N'', N'', N'', 6, N'', NULL, N'Prepared White Beans, Water, Brown Sugar, Molasses, Pork, Corn Starch, Salt, Mustard (Water, Vinegar, Mustard Seed, Salt, Turmeric, Spices), Mustard Powder, Spices, Garlic Powder, and Natural Flavor.', N'', N'', N'0', N'0', 8, N'25', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (288, N'', N'', N'39400019640 ', 7, 14, 6.2200, 2, N'Barbecue - Rich, Slow-Cooked Barbecue Taste', 3, 28, 4, 794, NULL, N'', N'', N'', N'', N'', 4, 4, 130, N'G', 200, N'', 6, 150, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 510, 21, N'', N'', 32, 11, N'5', N'20', 13, N'', N'', N'', 6, N'', NULL, N'Water, Prepared White Beans, Brown Sugar, Sugar, Tomato Paste, Vinegar, Molasses, Spices, Garlic Powder, Onion Powder, Smoked Pork Flavor (Natural Flavors, Bacon Fat, Natural Smoke Flavor, Autolyzed Yeast Extract), and Hickory Flavor (Natural Flavors and Corn Syrup Solids).', N'', N'', N'30', N'0', 6, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (289, N'', N'', N'39400019695 ', 7, 14, 12.9000, 2, N'Maple Cured Bacon - Specially Cured Bacon & a touch of Maple Syrup', 3, 16, 4, 454, NULL, N'', N'', N'', N'', N'', 4, 4, 130, N'G', 200, N'', 3.5, 140, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 620, 26, N'', N'', 28, 9, N'5', N'20', 11, N'', N'', N'', 6, N'', NULL, N'Water, Prepared White Beans, Sugar, Mustard (Vinegar, Water, Mustard Seed, Salt, Natural Flavor), Maple Cured Bacon, Salt, Pure Maple Syrup, Corn Starch, Onion Powder, Caramel Color, Tapioca Maltodextrin, Autolyzed Yeast Extract, Bacon Fat, Natural Flavors, and Natural Smoke Flavor.', N'', N'', N'0', N'2', 6, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (290, N'', N'', N'39400019701 ', 7, 14, 1.9200, 2, N'Maple Cured Bacon - Specially Cured Bacon & a touch of Maple Syrup', 3, 28, 4, 794, NULL, N'', N'', N'', N'', N'', 4, 4, 130, N'G', 200, N'', 6, 140, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 620, 26, N'', N'', 28, 9, N'5', N'20', 11, N'', N'', N'', 6, N'', NULL, N'Water, Prepared White Beans, Sugar, Mustard (Vinegar, Water, Mustard Seed, Salt, Natural Flavor), Maple Cured Bacon, Salt, Pure Maple Syrup, Corn Starch, Onion Powder, Caramel Color, Tapioca Maltodextrin, Autolyzed Yeast Extract, Bacon Fat, Natural Flavors, and Natural Smoke Flavor.', N'', N'', N'0', N'2', 6, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (291, N'', N'', N'39400019749 ', 7, 14, 3.5100, 2, N'Country Style - Thick, Rich Sauce with Bacon & Extra Brown Sugar', 3, 28, 4, 794, NULL, N'', N'', N'', N'', N'', 4, 4, 130, N'G', 200, N'', 6, 160, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 680, 28, N'', N'', 33, 11, N'5', N'20', 16, N'', N'', N'', 6, N'', NULL, N'Prepared White Beans, Water, Brown Sugar, Sugar, Salt, Corn Starch, Bacon, Natural Pork Flavor (Pork Stock, Maltodextrin, Pork Flavor, Dextrose), Mustard (Water, Vinegar, Mustard Seed, Salt, Turmeric, Spices), Onion Powder, Caramel Color, Spices, Garlic Powder, and Natural Flavor.', N'', N'', N'0', N'0', 4, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (292, N'', N'', N'41116005954 ', 78, 4, 9.5900, 7, N'Watermelon', 18, 1.1, 4, 31, NULL, N'', N'', N'', N'', N'', NULL, NULL, NULL, N'', NULL, N'', NULL, NULL, N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', NULL, NULL, N'', N'', NULL, NULL, N'', N'', NULL, N'', N'', N'', NULL, N'', NULL, N'Sugar, Dextrose, Corn Syrup, Artificial Flavors, Citric Acid, Buffered Lactic Acid, Pear Juice Concentrate, Artificial Color, Blue 1 Lake, Yellow 5 Lake, Red 40 Lake, Red 3.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (293, N'', N'', N'41116006524 ', 78, 1, 8.8500, 7, N'Powder & Crunch', 18, 1.3, 4, 37, NULL, N'', N'', N'', N'', N'', 1.3, 4, 37, N'G', 200, N'', 1, 150, N'', 0, 0, N'', N'', N'0', N'', N'', N'', N'', N'', 10, 0, N'', N'', 37, 12, N'', N'', 33, N'', N'', N'', 0, N'', NULL, N'Sugar, Dextrose, Corn Syrup, Malic Acid, Citric Acid, Natural & Artificial Flavors, Buffered Lactic Acid, Pear Juice Concentrate, Artificial Colors, Blue 1 Lake, Blue 1, Confectionery Glaze, Carnauba Wax, Beeswax.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (294, N'', N'', N'41129077825 ', 32, 33, 11.2000, 60, N'Roasted Garlic', 11, 26, 4, 737, NULL, N'', N'', N'', N'', N'', 4, 4, 125, N'G', 200, N'', 6, 60, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 220, 9, N'', N'', 11, 4, N'2', N'8', 8, N'', N'', N'', 2, N'', NULL, N'Diced Tomatoes (Tomatoes, Tomato Juice, Calcium Chloride, Citric Acid), Tomato Puree (Water, Tomato Paste), Onion, Roasted Garlic, Olive Oil, Salt, Dehydrated Garlic, Spices, Soybean Oil.', N'Refrigerate after Opening', N'Contains Soybeans', N'10', N'8', 6, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (295, N'', N'', N'41129077856 ', 32, 33, 6.7400, 60, N'Triple Mushroom', 11, 26, 4, 737, NULL, N'', N'', N'', N'', N'', 4, 4, 125, N'G', 200, N'', 6, 80, N'20', 2, 3, N'0.5', N'3', N'0', N'', N'', N'', N'0', N'0', 390, 16, N'', N'', 12, 4, N'3', N'11', 5, N'', N'', N'', 3, N'', NULL, N'Tomato Puree (Water, Tomato Paste), White Mushrooms, Portobello Mushrooms, Crimini Mushrooms, Sugar, Salt, Soybean Oil, Natural Onion Flavor (Partially Hydrogenated Soybean Oil, Butter Oil, Onion Powder, Natural Flavor, Salt), Olive Oil, Dehydrated Onion, Spices, Imported Pecorino Romano Cheese (Sheep''s Milk, Rennet, Salt, Enzymes), Citric Acid, Garlic, Lactic Acid, Ascorbic Acid.', N'Refrigerate after Opening', N'Contains Soybeans, Milk.', N'10', N'15', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (296, N'', N'', N'41196010510 ', 62, 153, 6.6200, 70, N'Green Split Pea with Bacon', 3, 19, 4, 538, NULL, N'', N'', N'', N'', N'', 8, 4, 244, N'G', 200, N'', 2, 170, N'15', 1, 3, N'0.5', N'3', N'0', N'', N'0', N'0', N'-5', N'1', 910, 38, N'', N'', 28, 9, N'5', N'20', 4, N'', N'', N'', 9, N'', NULL, N'Water, Split Peas, Celery. Contains less than 2% of: Bacon (Pork cured with Water, Salt, Sugar, Sodium Phosphate, Sodium Erythorbate, Sodium Nitrite), Modified Corn Starch, Sweet Peas, Sugar, Salt, Onion Powder, Calcium Chloride, Malted Barley Flour, Natural Smoke Flavor, Natural Flavor.', N'', N'', N'2', N'0', 0, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (297, N'', N'', N'41196011128 ', 62, 152, 11.1200, 70, N'New England Clam Chowder', 3, 18.5, 4, 524, NULL, N'', N'', N'', N'', N'', 8, 4, 240, N'G', 200, N'', 2, 190, N'90', 10, 15, N'2.5', N'11', N'0', N'', N'4.5', N'2', N'30', N'10', 900, 38, N'', N'', 20, 7, N'2', N'7', 2, N'', N'', N'', 5, N'', NULL, N'Clam Broth, Potatoes, Clams, Soybean Oil, Water, Celery, Modified Food Corn Starch. Contains less than 2% of: Onions, Salt, Soy Protein Concentrate, Cream, Butter, Sugar, Sodium Phosphates, Artificial Color, Datem, Lobster Powder, Shrimp, MSG, Corn Syrup, Crab Powder, Dried Parsley, Disodium Guanylate, Disodium Inosinate, Onion Powder, Fish Powder, Tuna Extract, Autolyzed Yeast Extract, Natural flavor, Spice, Hydrolyzed Corn Protein, Whey.', N'', N'Contains: Clam, Milk, Soy, Lobster, Shrimp, Crab, Tuna, Cod and Fish ingredients.', N'2', N'0', 2, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (298, N'', N'', N'41196415063 ', 62, 151, 13.6300, 70, N'Vegetable', 3, 18.5, 4, 524, NULL, N'', N'', N'', N'', N'', 8, 4, 238, N'G', 200, N'', 2, 60, N'0', 0, 0, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 470, 20, N'600', N'17', 14, 5, N'4', N'15', 4, N'', N'', N'', 3, N'', NULL, N'Water, Celery, Green Beans, Tomatoes, Carrots, Tomato Paste, Corn, Enriched Pasta (Semolina Wheat, Egg White, Niacin, Ferrous Sulfate, Thiamin Mononitrate, Riboflavin, Folic Acid), Contains less than 1% of: Modified Food Starch, Chicory Root Extract, Hydrolyzed Corn Protein, MSG, Sugar, Potassium Chloride, Autolyzed Yeast Extract, Garlic Powder, Onion Powder, Spice, Salt, Citric Acid, Calcium Chloride, Disodium Inosinate, Disodium Guanylate.', N'', N'Contains Wheat and Egg ingrdients.', N'20', N'0', 2, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (299, N'', N'', N'41196910360 ', 62, 152, 9.0800, 70, N'Chicken & Wild Rice', 3, 19, 4, 538, NULL, N'', N'', N'USDA Inspected', N'', N'', 8, 4, 239, N'G', 200, N'', 2, 100, N'15', 1.5, 2, N'0.5', N'3', N'0', N'', N'0', N'0.5', N'15', N'5', 870, 36, N'', N'', 15, 5, N'1', N'5', 1, N'', N'', N'', 6, N'', NULL, N'Chicken Broth, Carrots, Cooked White Chicken Meat, Tomatoes, Wild Rice, Rice, Celery. Contains less than 1% of: Modified Food Starch, Water, Salt, MSG, Chicken Fat, Hydrolyzed Corn Protein, Carrot Puree, Onion Powder, Autolyzed Yeast Extract, Sodium Phosphate, Dried Parsley, Soy Protein Isolate, Calcium Chloride, Citric Acid, Natural Flavor, Sugar, Beta Carotene (Color), Ascorbic Acid, Alpha Tocopherol (Preservative).', N'', N'Contains Soy ingredients.', N'20', N'0', 2, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (300, N'', N'', N'41271001297 ', 83, 130, 3.5700, 1, N'', 18, 16, 1, 473, NULL, N'', N'', N'K', N'', N'', 8, 4, 240, N'ML', 188, N'', 2, 120, N'45', 5, 8, N'3', N'15', N'0', N'', N'', N'', N'20', N'7', 125, 5, N'', N'', 12, 4, N'0', N'0', 12, N'', N'', N'', 8, N'', NULL, N'Reduced Fat Milk, Vitamin A Palmitate, and Vitamin D3.', N'Keep Refrigerated', N'', N'10', N'4', 30, N'0', 25, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (301, N'', N'', N'41271003406 ', 83, 130, 0.4400, 38, N'Ultra-Pasteurized', 5, 1, 5, 473, NULL, N'', N'', N'', N'', N'', 2, NULL, 30, N'ML', 188, N'', 16, 40, N'30', 3, 5, N'2', N'10', N'0', N'', N'', N'', N'15', N'4', 30, 1, N'', N'', 1, 0, N'0', N'0', 1, N'', N'', N'', 1, N'', NULL, N'Milk, Cream, Contains less than 1% of each of the following: Sodium Citrate and Disodium Phosphate.', N'Keep Refrigerated', N'Contains: Milk', N'2', N'0', 4, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (302, N'', N'', N'41271005950 ', 83, 130, 6.8100, 1, N'', 21, 1, 2, 3.78, NULL, N'', N'', N'K-D', N'', N'', 8, 4, 240, N'ML', 188, N'', 16, 120, N'45', 5, 8, N'3', N'15', N'0', N'', N'', N'', N'20', N'7', 125, 5, N'', N'', 12, 4, N'0', N'0', 12, N'', N'', N'', 8, N'16', NULL, N'Reduced Fat Milk, Vitamin A Palmitate, and Vitamin D3.', N'Keep Refrigerated', N'', N'10', N'4', 30, N'0', 25, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (303, N'', N'', N'41271019940 ', 83, 130, 3.8600, 1, N'', 21, 64, 1, 1.89, NULL, N'', N'', N'K', N'', N'', 8, 4, 240, N'ML', 188, N'', 8, 120, N'45', 5, 8, N'3', N'15', N'0', N'', N'', N'', N'20', N'7', 125, 5, N'', N'', 12, 4, N'0', N'0', 12, N'', N'', N'', 8, N'', NULL, N'Reduced Fat Milk, Vitamin A Palmitate, and Vitamin D3.', N'Keep Refrigerated', N'', N'10', N'4', 30, N'0', 25, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (304, N'', N'', N'41364080529 ', 1, 171, 3.4900, 7, N'Zappin'' Apple', 17, 2, 4, 57, NULL, N'', N'', N'', N'', N'', 2, 4, 57, N'G', 200, N'', 1, 210, N'5', 1, 1, N'0.5', N'3', N'0', N'', N'', N'', N'0', N'0', 10, 0, N'', N'', 49, 16, N'1', N'4', 26, N'', N'', N'', 1, N'', NULL, N'Corn Syrup, Wheat Flour, Sugar, Citric Acid, Malic Acid, Tartaric Acid, Glyceryl Monostearate, Glycerine, Artificial Flavor, Color added (including Blue 1, Blue 1 Lake, Yellow 5, Yellow 5 Lake).', N'', N'Contains Wheat ingredients.', N'0', N'0', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (305, N'', N'', N'50000582815 ', 47, 36, 8.5700, 44, N'Peppermint Mocha', 18, 16, 1, 473, NULL, N'', N'', N'OU-D', N'', N'Spanish Translations', 1, NULL, 15, N'ML', 188, N'', 32, 35, N'15', 1.5, 2, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 5, 0, N'', N'', 5, 2, N'', N'', 5, N'', N'', N'', 0, N'', NULL, N'Water, Sugar, Partially Hydrogenated Soybean and/or Cottonseed Oil, and less than 2% of Sodium Caseinate (a Milk Derivative), Natural and Artificial Flavors, Dipotassium Phosphate, Color added, Sodium Stearoyl Lactylate, Mono- and Diglycerides, Polysorbate 60, Carrageenan, Beta-Carotene Color.', N'Keep Refrigerated', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (306, N'', N'', N'50000886104 ', 47, 36, 0.9400, 44, N'Peppermint Mocha', 18, 32, 1, 946, NULL, N'', N'', N'OU-D', N'', N'Spanish Translations', 1, NULL, 15, N'ML', 188, N'', 63, 35, N'15', 1.5, 2, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 5, 0, N'', N'', 5, 2, N'', N'', 5, N'', N'', N'', 0, N'', NULL, N'Water, Sugar, Partially Hydrogenated Soybean and/or Cottonseed Oil, and less than 2% of Sodium Caseinate (a Milk Derivative)**, Natural and Artificial Flavors, Dipotassium Phosphate, Color added, Sodium Stearoyl Lactylate, Mono- and Diglycerides, Polysorbate 60, Carrageenan, Beta-Carotene Color. ** Not a source of lactose.', N'Keep Refrigerated', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (307, N'', N'', N'50000953936 ', 47, 36, 13.2200, 44, N'Pumpkin Spice', 18, 16, 1, 473, NULL, N'', N'', N'OU-D', N'', N'Spanish Translations', 1, NULL, 15, N'ML', 188, N'', 32, 35, N'15', 1.5, 2, N'0', N'0', N'0', N'', N'0', N'0', N'0', N'0', 5, 0, N'', N'', 5, 2, N'', N'', 5, N'', N'', N'', 0, N'', NULL, N'Water, Sugar, Partially Hydrogenated Soybean and/or Cottonseed Oil, and less than 2% of Sodium Caseinate (a Milk Derivative)**, Natural and Artificial Flavors, Dipotassium Phosphate, Color added, Sodium Stearoyl Lactylate, Mono- and Diglycerides, Polysorbate 60, Carrageenan, Beta-Carotene Color. ** Not a source of lactose.', N'Keep Refrigerated', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (308, N'', N'', N'50100405694 ', 14, 80, 4.1500, 70, N'Baked Potato Style', 3, 18.75, 4, 532, NULL, N'', N'', N'', N'', N'', 8.7, 4, 248, N'G', 200, N'', 2, 130, N'15', 2, 3, N'1', N'5', N'', N'', N'', N'', N'-5', N'1', 480, 20, N'', N'', 27, 9, N'5', N'20', 0, N'', N'', N'', 4, N'', NULL, N'Chicken Broth, Dehydrated Potatoes, Modified Food Starch, Less than 2% of: Pasteurized Process American Style Cheese Product and American Cheese (Skim Milk Cheese, Reduced Fat Cheddar Cheese and American Cheeses [Skim Milk, Milk, Cheese Culture, Salt, Enzymes, Color added, Vitamin A Palmitate], Water, Whey, Skim Milk, Whey Protein Concentrate, Sodium Phosphate, Salt), Bacon Bits (Bacon [cured with Water, Salt, Sugar], Hickory Smoke Flavoring), Powdered Cellulose, Dextrose, Color added including Oleoresin Paprika, Potassium Citrate, Salt, Potassium Lactate, Potassium Chloride, Autolyzed Yeast Extract, Disodium Inosinate and Disodium Guanylate, Natural Flavor, Datem, Dehydrated Chives, Pork, Xanthan Gum, Wheat Flour, Spice.', N'', N'', N'0', N'2', 4, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (309, N'', N'', N'50100408039 ', 14, 82, 11.1700, 27, N'Grilled Turkey Breast in Cranberry Sauce', 2, 10.8, 4, 360, NULL, N'', N'', N'USDA Inspected, AHA ', N'', N'', 10.8, 4, 306, N'G', 200, N'', 1, 280, N'30', 3, 5, N'1', N'5', N'0', N'', N'1', N'1', N'25', N'8', 410, 17, N'490', N'14', 48, 16, N'8', N'32', 25, N'', N'', N'', 14, N'28', NULL, N'Turkey Breast Medallions with Binders, Caramel Color added: Turkey Breast, Water, Contains 2% or less of: Modified Food Starch, Isolated Soy Protein, Chicken Broth (Maltodextrin, Chicken Broth, Salt, Flavors), Salt, Olive Oil, Paprika, Soy Lecithin, Sodium Tripolyphosphate, Xanthan Gum, Dextrose, Caramel Color, Water, Green Beans, Roasted Sweet Potatoes, Brown Sugar, Carrots, Oatmeal Topping: Rolled Oats, Sugar, High Fructose Corn Syrup Sugar, Soybean Oil, Honey, Brown Sugar, Molasses, Modified Food Starch, Cranberry Juice from Concentrate, Cranberries, Margarine (Liquid and Partially Hydrogenated Soybean Oil, Water, Salt, Vegetable Mono- and Diglycerides, Soy Lecithin, Sodium Benzoate, Citric Acid and Calcium Disodium EDTA [Preservatives], Artificially Flavored, colored with Beta Carotene, Vitamin A Palmitate added), Sugar, Butter (Cream, Salt), Nonfat Dry Milk (Nonfat Dry Milk, Vitamin A Palmitate and Vitamin D3), Salt, Spices, Wheat Flour, Sweet Dairy Whey, Sweet Cream Powder (Cream, Nonfat Milk Solids, Sodium Caseinate, Sodium Aluminosilicate), Caramelized Sugar (Maltodextrin, Natural Flavoring, Modified Corn Starch, Caramel Color [Contains Egg]), Vanilla Flavor (Water, Ethyl Alcohol, Corn Syrup, Polysorbate 80 and Caramel Color), Artificial Butter Caramel Flavor (Propylene Glycol, Natural Flavors, Artificial Flavors), Caramel Color, Ascorbic Acid, Locust Bean Gum, Citric Acid, Sodium Acid Pyrophosphate, Beef Extract, Sunflower Oil, Flavors, Autolyzed Yeast Extract, Lactic Acid.', N'Keep Frozen', N'Contains: Soy, Milk, Wheat, Egg.', N'50', N'90', 4, N'6', NULL, N'', N'', N'6', N'15', N'20', N'', NULL, N'10', 10, N'10', N'', N'', 20, NULL, N'8', N'6', N'', N'', N'25', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (310, N'', N'', N'50100459536 ', 14, 82, 7.8200, 28, N'Sweet & Sour Chicken', 2, 12, 4, 340, NULL, N'', N'', N'USDA Inspected, AHA ', N'', N'', 12, 4, 340, N'G', 200, N'', 1, 430, N'90', 9, 14, N'1', N'5', N'0', N'', N'2.5', N'4.5', N'20', N'7', 600, 25, N'500', N'14', 69, 23, N'5', N'20', 29, N'', N'', N'', 16, N'', NULL, N'Tempura Chicken Breast: Chicken Breast Meat, Water, Corn Starch, Salt, Potassium Chloride, Potassium Phosphate, predusted with: Enriched Wheat Flour (Enriched with Niacin, Ferrous Sulfate, Thiamine Mononitrate, Riboflavin, Folic Acid), Soybean Oil, Salt, Natural Flavor. Battered with: Water, Bleached Wheat Flour, Yellow Corn Flour, Leavening (Sodium Bicarbonate, Sodium Aluminum Phosphate), Salt, Egg, Guar Gum. Fully cooked in Canola Oil. Cooked Rice, Broccoli, Water, Peaches (may contain Citric and/or Malic and/or Ascorbic and/or Erythorbic Acids), Green and Red Peppers, Sugar, Pineapple Tidbits and Juice, Onions, Contains 2% or less of the following: Brown Sugar, Oatmeal Topping (Rolled Oats, Sugar, High Fructose Corn Syrup, Sugar, Soybean Oil, Honey, Brown Sugar, Molasses), Corn Syrup, Vinegar, Modified Corn Starch, Soy Sauce (Water, Wheat, Soybeans, Salt, Alcohol, Vinegar, Lactic Acid), Soybean Oil, Tomato Paste, Whiskey with Salt, Spices, Sherry Wine, Salt, Citric Acid, Locust Bean Gum, Garlic, Oleoresin Paprika, Onion Powder, Beet Juice Concentrate.', N'Keep Frozen', N'Contains: Wheat, Eggs, Soy.', N'25', N'50', 4, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (311, N'', N'', N'50100459635 ', 14, 82, 1.6700, 28, N'Classic Grilled Chicken BBQ', 2, 10.5, 4, 298, NULL, N'', N'', N'USDA Inspected, AHA ', N'', N'', 10.5, 4, 298, N'G', 200, N'', 1, 270, N'30', 3, 5, N'1', N'5', N'0', N'', N'1', N'1', N'30', N'10', 450, 19, N'710', N'20', 45, 15, N'6', N'24', 19, N'', N'', N'', 15, N'30', NULL, N'Mesquite Flavored Glazed White Meat Chicken: White Meat Chicken, Water, Mesquite Seasoning Blend (Dextrose, Modified Food Starch, Maltodextrin, Salt, Paprika, Lemon Peel, Spice, Sugar, Garlic, Citric Acid, Corn Starch, Xanthan Gum, Onion, Smoke Flavor [Maltodextrin, Smoke Flavor], Grill Flavor [Maltodextrin, Partially Hydrogenated Cottonseed and Soybean Oil, Modified Food Starch, Corn Syrup Solids], Smoke Flavor [Partially Hydrogenated Soybean Oil, Smoke Flavor], Lemon Oil), Soy Protein Isolate, Modified Food Starch, Salt, Chicken Flavor (Yeast Extract, Maltodextrin, Chicken Flavor [Contains Xanthan Gum, Disodium Inosinate, Disodium Guanylate], Salt, Chicken Fat, Citric Acid, Natural Flavor), Soybean Oil, Sodium Tripolyphosphate, Flavoring, Water, Roasted Potatoes, Broccoli, Apples, Brown Sugar, Sugar, Tomato Paste, Contains 2% or less of: Oatmeal Topping: Rolled Oats, Sugar, High Fructose Corn Syrup, Soybean Oil, Honey, Brown Sugar, Molasses. Modified Corn Starch, Sugarcane Molasses, Vinegar, BBQ Seasoning (Salt, Dehydrated Onion, Spices, Dehydrated Garlic, Polysorbate 80 and Natural Smoke Flavor), Nonfat Dry Milk (Nonfat Dry Milk, Vitamin A Palmitate and Vitamin D3), Wheat Flour, Sweet Dairy Whey, Sweet Cream Powder (Cream, Nonfat Milk Solids, Sodium Caseinate, Sodium Aluminosilicate), Caramelized Sugar (Maltodextrin, Natural Flavoring, Modified Corn Starch, Caramel Color [Contains Egg]), Vanilla Flavor (Water, Ethyl Alcohol, Corn Syrup, Polysorbate 80 and Caramel Color), Artificial Butter Caramel Flavor (Propylene Glycol, Natural Flavors, Artificial Flavors), Caramel Color, Mustard Flour, Salt, Chipotle Pepper Concentrate: Red Chile Peppers, Chipotle Peppers, Salt and Flavoring (Natural Smoke Flavorings). Xanthan Gum.', N'Keep Frozen', N'Contains: Soy, Milk, Wheat, Egg.', N'4', N'50', 4, N'8', NULL, N'4', N'', N'10', N'10', N'20', N'', NULL, N'15', 10, N'4', N'', N'', 25, NULL, N'10', N'4', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (312, N'', N'', N'51000011770 ', 10, 16, 9.6400, 70, N'French Onion', 3, 10.5, 4, 298, NULL, N'', N'', N'USDA Inspected', N'', N'', 4, 1, 120, N'ML', 188, N'', 2.5, 45, N'15', 1.5, 2, N'1', N'5', N'0', N'', N'', N'', N'-5', N'2', 900, 38, N'', N'', 6, 2, N'1', N'4', 4, N'', N'', N'', 2, N'', NULL, N'Onions, Beef Stock, Contains less than 2% of the following ingredients: Salt, Yeast Extract, Vegetable Oil, Potato Starch, Water, MSG, Caramel Color, Hydrolyzed Yeast Protein, Enzyme Modified Cheddar Cheese (Cheddar Cheese [Milk, Cheese Culture, Salt, Enzymes], Water, Disodium Phosphate), Beef Fat, Hydrolyzed Soy Protein, Citric Acid, Spice Extract, Dextrose, Hydrolyzed Wheat Gluten.', N'', N'', N'0', N'0', 2, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (313, N'', N'', N'51000012142 ', 10, 150, 13.0200, 60, N'Chunky Garden - Tomato, Onion & Garlic', 11, 26, 4, 737, NULL, N'', N'', N'', N'', N'', 4, 1, 120, N'ML', 188, N'', 6, 90, N'25', 3, 5, N'0.5', N'3', N'0', N'', N'', N'', N'0', N'0', 470, 20, N'400', N'11', 13, 4, N'3', N'12', 10, N'', N'', N'', 2, N'', NULL, N'Tomato Puree (Water, Tomato Paste), Diced Tomatoes in Tomato Juice, Onions, Corn Syrup, Vegetable Oil (Corn and/or Cottonseed and/or Canola), Sugar, Garlic, Salt, Spices (Basil, Oregano, Spice), Dehydrated Garlic, Citric Acid, Onion Powder, and Dehydrated Parsley.', N'Refrigerate after Opening', N'', N'10', N'6', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (314, N'', N'', N'51000012616 ', 10, 16, 4.7700, 70, N'Cream of Mushroom', 3, 10.75, 4, 305, NULL, N'', N'', N'', N'', N'', 4, 1, 120, N'ML', 188, N'', 2.5, 100, N'50', 6, 9, N'1.5', N'8', N'0', N'', N'', N'', N'5', N'2', 870, 36, N'', N'', 9, 3, N'2', N'8', 1, N'', N'', N'', 1, N'', NULL, N'Water, Mushrooms, Vegetable Oil (Corn, Cottonseed, Canola, and/or Soybean), Modified Food Starch, Wheat Flour, Contains less than 2% of: Cream (Milk), Salt, Dried Whey (Milk), MSG, Soy Protein Concentrate, Yeast Extract, Spice Extract, Dehydrated Garlic.', N'', N'', N'0', N'0', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (315, N'', N'', N'51000126320 ', 10, 18, 13.7900, 68, N'New England Clam Chowder', 3, 18.8, 4, 533, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 100, N'15', 1.5, 2, N'0.5', N'3', N'0', N'', N'', N'', N'10', N'3', 850, 35, N'', N'', 16, 5, N'2', N'8', 2, N'', N'', N'', 6, N'', NULL, N'Clam Broth, Potatoes, Clam Meat, Water, Celery, Modified Food Starch, Contains less than 2% of the following: Onions, Vegetable Oil (Corn, Cottonseed, Canola and/or Soybean), Color added, Salt, MSG, Soy Protein Concentrate, Bleached Enriched Flour (Wheat Flour, Niacin, Ferrous Sulfate, Thiamine Mononitrate, Riboflavin, Folic Acid), Butter (Milk), Sugar, Flavorings, Disodium Inosinate, Disodium Guanylate, Sodium Phosphates, Dehydrated Parsley, Spice, Clam Extract Powder (Clam Meat, Salt, Sugar, Soy Sauce [Soybeans, Wheat, Salt]), Succinic Acid.', N'', N'', N'0', N'0', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (316, N'', N'', N'51000142139 ', 10, 20, 1.0200, 70, N'Italian Sausage with Pasta & Pepperoni', 3, 18.6, 4, 527, NULL, N'', N'', N'USDA Inspected', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 160, N'60', 7, 11, N'2.5', N'13', N'0', N'', N'', N'', N'15', N'5', 480, 20, N'', N'', 18, 6, N'2', N'8', 3, N'', N'', N'', 7, N'', NULL, N'Water, Tomato Puree (Water, Tomato Paste), Cooked Pasta (Wheat Flour, Egg Whites), Cooked Italian Sausage (Pork, Seasonings [Spices, Salt, Garlic*], Water, Salt), Mushrooms, Pepperoni (Pork, Beef, Salt, Spices, Dextrose, Seasonings [Oleoresin Paprika, Spice Extractives, BHA, BHT, Citric Acid], Lactic Acid, Starter Culture, Sodium Nitrite), Red Peppers, Contains less than 2% of: Lower Sodium Natural Sea Salt, Onions*, Vegetable Base (Carrots, Cabbage, Onions, Celery Leaves, Celery, Salt, Parsley), Modified Corn Starch, Romano Cheese (Pasteurized Cow''s Milk, Cheese Cultures, Salt, Enzymes), Natural Flavoring, Potassium Chloride, Chicken Stock, Sugar, Garlic*, Salt, Parsley*, Cornstarch, Chicken Broth, *, Chicken Fat, Whey*, Ascorbic Acid (Vitamin C), Eggs, Spice. * Dried.', N'', N'', N'6', N'10', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (317, N'', N'', N'51000149978 ', 10, 20, 3.5800, 70, N'Mexican Style Chicken Tortilla', 3, 18.6, 4, 527, NULL, N'', N'', N'USDA Inspected', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 130, N'20', 2.5, 4, N'1', N'5', N'0', N'', N'0.5', N'0.5', N'20', N'7', 480, 20, N'', N'', 20, 7, N'2', N'8', 2, N'', N'', N'', 8, N'', NULL, N'Water, Tomato Puree (Water, Tomato Paste), Roasted Natural White Meat Chicken, Cooked Rice, Cooked Black Beans, Corn, Red Peppers, Monterey Jack Cheese (Pasteurized Milk, Cheese Culture, Salt, Enzymes), Contains less than 2% of: Lower Sodium Natural Sea Salt, Green Chili Peppers, Tortilla Chips (Whole Kernel Yellow Corn, Peanut Oil, Water, Salt, Lime), Modified Corn Starch, Salt, Natural Flavoring, Potassium Chloride, Chipotle Chili Pepper, Seasoning (Paprika, Spice, Garlic, Onion), Natural Flavoring (Salt, Onion Juice Concentrate), Rice Starch, Yeast Extract, Lime Juice Concentrate, Spice.', N'', N'', N'8', N'2', 4, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (318, N'', N'', N'51000154774 ', 10, 19, 2.4100, 68, N'Italian Tomato with Basil & Garlic', 5, 18.3, 4, 520, NULL, N'', N'', N'', N'Canada', N'', 8, 1, 240, N'ML', 188, N'', 2, 90, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 770, 32, N'', N'', 19, 6, N'3', N'12', 14, N'', N'', N'', 3, N'', NULL, N'Tomato Puree (Water, Tomato Paste), Water, Carrots, Sweet Red Peppers, Contains less than 2% of the following: Zucchini, Sugar, Dehydrated Potatoes, Dehydrated Onions, Salt, Modified Food Starch, Parmesan Cheese (Part-Skim Milk, Cultures, Salt, Enzymes), Spice, Dehydrated Red Peppers, Yeast Extract, Garlic Puree, Roasted Red Bell Pepper Puree, Corn Syrup Solids, Citric Acid, Paprika Extract (for Color), Spice Extract (Contains Soy Lecithin).', N'', N'', N'45', N'8', 4, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (319, N'', N'', N'51000154842 ', 10, 19, 10.0800, 68, N'Golden Butternut Squash', 5, 18.3, 4, 520, NULL, N'', N'', N'', N'Canada', N'', 8, 1, 240, N'ML', 188, N'', 2, 90, N'15', 1.5, 2, N'1', N'5', N'0', N'', N'', N'', N'5', N'2', 810, 34, N'', N'', 18, 6, N'3', N'12', 8, N'', N'', N'', 2, N'', NULL, N'Butternut Squash, Water, Potatoes, Carrots, Cream (Milk), Contains less than 2% of the following: Modified Food Starch, Salt, Dehydrated Potatoes, Sugar, Yeast Extract, Butter, Dehydrated Onions, Maltodextrin, Onions, Celery, Dehydrated Parsley, Corn Oil, Cornstarch, Spice Extract, Flavoring (Contains Milk, Soybean).', N'', N'', N'40', N'0', 2, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (320, N'', N'', N'51000166159 ', 10, 19, 9.4800, 68, N'Southwestern Corn', 5, 18.3, 4, 520, NULL, N'', N'', N'', N'Canada', N'', 8, 1, 240, N'ML', 188, N'', 2, 190, N'70', 8, 12, N'1.5', N'8', N'0', N'', N'', N'', N'5', N'2', 610, 25, N'', N'', 26, 9, N'4', N'16', 7, N'', N'', N'', 3, N'', NULL, N'Chicken Stock, Corn, Water, Super Sweet Dehydrated Corn (Corn, Maltodextrin, Cornstarch, Soy Lecithin), Vegetable Oil (Canola, Soybean), Contains less than 2% of the following: Modified Food Starch, Salt, Sugar, Cream Powder (Milk), Soy Protein Concentrate, Dehydrated Onions, Dehydrated Red Peppers, Cilantro, Nonfat Milk, Roasted Red Peppers, Onion Powder, Sauted Vegetables (Onions, Carrots, Celery), Maltodextrin, Spice, Chili and Chipotle Powders, Seasoning (Spice Extract with Soy Lecithin, Natural Grill Flavor from Sunflower Oil), Lime Juice Concentrate, Dehydrated Garlic, Olive Oil, Yeast Extract, Molasses, Soy Lecithin, Vinegar, Garlic, Natural Smoke Flavoring.', N'', N'', N'6', N'0', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (321, N'', N'', N'51000167750 ', 10, 17, 7.1100, 70, N'Grilled Chicken & Sausage Gumbo', 3, 18.8, 4, 533, NULL, N'', N'', N'USDA Inspected', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 140, N'25', 2.5, 4, N'1', N'5', N'0', N'', N'0.5', N'1', N'15', N'5', 480, 20, N'600', N'17', 21, 7, N'3', N'12', 4, N'', N'', N'', 8, N'', NULL, N'Water, Diced Tomatoes in Tomato Juice, Rice, Tomato Puree (Water, Tomato Paste), Cooked White Chicken Meat, Cooked Andouille Sausage (Pork, Water, Seasonings [Spices, Dextrose, Onion Powder, Garlic Powder], Salt, Hickory Char Oil [Partially Hydrogenated Soybean Oil, Natural Woodsmoke Flavor], Sodium Nitrite), Celery, Okra, Green Peppers, Contains less than 2% of the following: Modified Wheat Starch, Green Chili Peppers, Chicken Broth Flavor Base (Chicken Broth, Salt, Chicken Flavor [Contains Chicken Fat, Flavoring Dextrin]), Sugar, Jalapeno Peppers, Dehydrated Onions, Dehydrated Red Peppers, Yeast Extract, Potassium Chloride, Vegetable Flavor Blend (Vegetables [Carrots, Onions, Celery], Salt, Sugar, Potato Flour, Carrot Powder), Salt, Modified Food Starch, Lower Sodium Natural Sea Salt, Dehydrated Garlic, Soy Protein Concentrate, Spice, Disodium Inosinate, Disodium Guanylate, Onion Powder, Dehydrated Parsley, Chicken Sodium Phosphates, Chicken Stock, Maltodextrin, Chicken Flavor (Contains Chicken Stock, Chicken Powder, Chicken Fat), Beta Carotene for Color, Red Pepper, Flavoring, Chicken Fat, Spice Extract.', N'', N'', N'15', N'2', 4, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (322, N'', N'', N'51000167798 ', 10, 17, 12.9700, 70, N'Chicken Noodle', 3, 18.8, 4, 533, NULL, N'', N'', N'USDA Inspected', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 120, N'20', 2.5, 4, N'0.5', N'3', N'0', N'', N'0.5', N'1', N'20', N'7', 480, 20, N'700', N'20', 15, 5, N'1', N'4', 2, N'', N'', N'', 7, N'', NULL, N'Chicken Stock, Cooked White Chicken Meat (White Chicken Meat, Water, Modified Food Starch, Soy Protein Concentrate, Salt, Sodium Phosphates, Chicken Flavor [Chicken Stock, Chicken Powder, Chicken Fat], Natural Flavoring), Carrots, Water, Enriched Egg Noodle (Wheat Flour, Egg White Solids, Whole Egg Solids, Niacin, Ferrous Sulfate, Thiamin Mononitrate, Riboflavin, Folic Acid), Celery, Contains less than 2% of the following ingredients: Modified Wheat Starch, Chicken Fat, Natural Flavoring, Potassium Chloride, Salt, Yeast Extract, Sugar, Hydrolyzed Wheat Gluten, Onion Powder, Corn Oil, Flavoring, Dextrose, Maltodextrin, Chicken Flavor (Chicken Stock, Salt and Enzyme), Dehydrated Parsley, Lower Sodium Natural Sea Salt, Autolyzed Yeast Extract, Cultured Whey (Milk), Dehydrated Garlic, Spice, Beta Carotene for color, Modified Food Starch, , Whole Egg Solids.', N'', N'', N'20', N'4', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (323, N'', N'', N'51000169037 ', 10, 22, 9.0900, 70, N'Mexican Style Chicken Tortilla', 3, 18.6, 4, 527, NULL, N'', N'', N'USDA Inspected', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 130, N'20', 2, 3, N'1', N'5', N'0', N'', N'', N'', N'15', N'5', 480, 20, N'750', N'21', 20, 7, N'2', N'8', 2, N'', N'', N'', 8, N'', NULL, N'Chicken Stock, Tomato Puree (Water, Tomato Paste), Roasted Natural White Meat Chicken, Cooked Rice, Cooked Black Beans, Corn, Red Peppers, Contains less than 2% of: Lower Sodium Natural Sea Salt, Spice, Monterey Jack Cheese (Pasteurized Milk, Cheese Culture, Salt, Enzymes), Green Chili Peppers, Tortilla Chips (Whole Kernel Yellow Corn, Peanut Oil, Water, Salt, Lime), Modified Corn Starch, Natural Flavoring, Yeast Extract, Salt, Chipotle Chili Pepper*, Potassium Chloride, Natural Flavoring [Salt, Onion Juice Concentrate], Rice Starch, Seasoning (Paprika, Spice, Garlic*, Onion*), Lime Juice Concentrate, Cornstarch, Chicken Broth*, Sugar, Chicken fat, Onion, Whey*, Ascorbic Acid (Vitamin C), Eggs. * Dried.', N'', N'', N'10', N'10', 4, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (324, N'', N'', N'51000174765 ', 10, 22, 4.5100, 70, N'Chicken with Egg Noddles', 3, 18.6, 4, 527, NULL, N'', N'', N'USDA Inspected', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 90, N'20', 2, 3, N'0.5', N'3', N'0', N'', N'', N'', N'20', N'7', 480, 20, N'700', N'20', 12, 4, N'1', N'4', 1, N'', N'', N'', 7, N'', NULL, N'Chicken Stock, Roasted Natural White Meat Chicken, Carrots, Egg Noodles (Wheat Flour, Eggs, Egg Whites), Contains less than 2% of: Lower Sodium Natural Sea Salt, Spice, Onions*, Garlic*, Modified Potato Starch, Chicken Fat, Flavoring Potassium Chloride, Carrot Juice Concentrate, Yeast Extract, Sugar, Salt, Vegetable Base (Carrots, Cabbage, Onions, Celery Leaves, Celery, Salt, Parsley), Corn Oil, Natural Flavoring (Salt, Onion Juice Concentrate), Rice Starch, Chicken Flavor (Water, Flavoring, Chicken*, Chicken Fat), Parsley*, Chives*. * Dried.', N'', N'', N'20', N'0', 2, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (325, N'', N'', N'51000180681 ', 10, 21, 13.6700, 70, N'Carmelized French Onion', 3, 18.8, 4, 533, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 80, N'25', 2.5, 4, N'1', N'5', N'0', N'', N'0.5', N'1', N'5', N'2', 480, 20, N'', N'', 12, 4, N'1', N'4', 4, N'', N'', N'', 3, N'', NULL, N'Water, Onions, Beef Stock, Swiss Cheese (Part Skim Milk, Cheese Culture, Salt, Calcium Chloride, Enzyme), Contains less than 2% of: Lower Sodium Natural Sea Salt, Cooking Wine, Flavoring (Milk), Sugar, Roasted Beef including Beef Juices, Yeast Extract, Soy Sauce (Water, Soybeans, Salt, Wheat), Modified Cornstarch, Vegetable Oil (Corn, Cottonseed, Canola, and/or Soybean), Caramel Color, Salt, Potato Starch, Onion Juice Concentrate, Potassium Chloride, Spice, Potato Flour, Parsley*, Onions*, Citric Acid, Molasses, Paprika. * Dried.', N'', N'', N'0', N'2', 6, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (326, N'', N'', N'70334003046 ', 45, 72, 8.4400, 62, N'Salted in the Shell', 17, 8, 4, 227, NULL, N'', N'', N'K', N'', N'', 1, 4, 30, N'G', 200, N'', 6, 190, N'130', 15, 23, N'2.5', N'12', N'0', N'', N'4', N'8', N'0', N'0', 180, 8, N'', N'', 5, 2, N'2', N'8', -1, N'', N'', N'', 9, N'', NULL, N'Roasted In-Shell Virginia Peanuts and Salt.', N'', N'May contain traces of Tree Nuts (Almonds, Brazil Nuts, Cashews, Filbert/Hazelnuts, Pecans, Pistachios).', N'0', N'0', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'10', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (327, N'', N'', N'70334003305 ', 45, 72, 13.5800, 62, N'Salted in the Shell', 17, 4.5, 4, 128, NULL, N'', N'', N'K', N'', N'', 1, 4, 30, N'G', 200, N'', 3, 190, N'130', 15, 23, N'2.5', N'12', N'0', N'', N'4', N'8', N'0', N'0', 180, 8, N'', N'', 5, 2, N'2', N'8', -1, N'', N'', N'', 9, N'', NULL, N'Roasted In-Shell Virginia Peanuts and Salt.', N'', N'May contain traces of Tree Nuts (Almonds, Brazil Nuts, Cashews, Filbert/Hazelnuts, Pecans, Pistachios).', N'0', N'0', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'10', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (328, N'', N'', N'70334005309 ', 45, 72, 9.7400, 62, N'Salted in the Shell', 17, 3, 4, 85, NULL, N'', N'', N'K', N'', N'', 1, 4, 30, N'G', 200, N'', 2, 190, N'130', 15, 23, N'2.5', N'12', N'0', N'', N'4', N'8', N'0', N'0', 180, 8, N'', N'', 5, 2, N'2', N'8', -1, N'', N'', N'', 9, N'', NULL, N'Roasted In-Shell Virginia Peanuts and Salt.', N'', N'May contain traces of Tree Nuts (Almonds, Brazil Nuts, Cashews, Filbert/Hazelnuts, Pecans, Pistachios).', N'0', N'0', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'10', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (329, N'', N'', N'70411213023 ', 49, 136, 12.7500, 5, N'Natural Style', 17, 1, 4, 28.3, NULL, N'', N'', N'USDA Inspected', N'', N'', 1, 4, 28.3, N'G', 200, N'', 1, 80, N'5', 1, 1, N'0.5', N'2', N'', N'', N'', N'', N'25', N'9', 420, 18, N'', N'', 5, 2, N'', N'', 4, N'', N'', N'', 12, N'24', NULL, N'Beef, Soy Sauce (Water, Wheat, Soybeans, Salt), Brown Sugar, White Wine, Corn Syrup, Spices, Salt, Hickory Smoke Flavoring, Flavorings, Sodium Nitrite.', N'', N'', N'', N'', NULL, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (330, N'', N'', N'70470001128 ', 84, 187, 1.8800, 47, N'Custard Style - Vanilla', 20, 6, 4, 170, NULL, N'', N'', N'K-D', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 190, N'30', 3.5, 5, N'2', N'10', N'0', N'', N'', N'', N'15', N'4', 100, 4, N'310', N'9', 32, 11, N'', N'', 28, N'', N'', N'', 7, N'14', NULL, N'Cultured Pasteurized Grade A Reduced Fat Milk, Sugar, Nonfat Milk, High Fructose Corn Syrup, Modified Corn Starch, Kosher Gelatin, Tricalcium Phosphate, Natural Flavor, Vitamin A Acetate, Vitamin D3.', N'Keep Refrigerated', N'', N'15', N'', 30, N'', 20, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (331, N'', N'', N'70470001364 ', 84, 187, 4.8300, 47, N'Custard Style - Crme Caramel', 20, 6, 4, 170, NULL, N'', N'', N'K-D', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 180, N'25', 2.5, 4, N'1.5', N'8', N'0', N'', N'', N'', N'15', N'4', 105, 4, N'320', N'9', 31, 10, N'', N'', 28, N'', N'', N'', 7, N'14', NULL, N'Cultured Pasteurized Grade A Reduced Fat Milk, Sugar, Nonfat Milk, High Fructose Corn Syrup, Modified Corn Starch, Fructose, Brown Sugar, Kosher Gelatin, Sweetened Condensed Skim Milk (Condensed Skim Milk, Sugar), Tricalcium Phosphate, Natural Flavor, Colored with Caramel and Annatto Extract, Vitamin A Acetate, Vitamin D3.', N'Keep Refrigerated', N'', N'15', N'', 30, N'', 20, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (332, N'', N'', N'70470006383 ', 84, 187, 9.2000, 58, N'Apple Turnover', 20, 6, 4, 170, NULL, N'', N'', N'K-D', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 100, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'-5', N'1', 85, 4, N'250', N'7', 19, 6, N'', N'', 14, N'', N'', N'', 5, N'10', NULL, N'Cultured Pasteurized Grade A Non Fat Milk, High Fructose Corn Syrup, Apples, Modified Corn Starch, Whey Protein Concentrate, Kosher Gelatin, Natural Flavor, Citric Acid, Tricalcium Phosphate, Aspartame, Potassium Sorbate added to maintain freshness, Vitamin A Acetate, Vitamin D3.', N'Keep Refrigerated. Phenylketonurics: Contains Phenylalanine', N'', N'15', N'', 20, N'', 20, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (333, N'', N'', N'21000645145 ', 37, 117, 13.6400, 19, N'', 29, 48, 1, 1.42, NULL, N'', N'', N'K-Pareve', N'', N'', 1, NULL, 15, N'G', 200, N'', 96, 40, N'30', 3, 5, N'0', N'0', N'0', N'', N'1.5', N'0.5', N'-5', N'1', 125, 5, N'', N'', 2, 1, N'', N'', 2, N'', N'', N'', 0, N'', NULL, N'Water, Soybean Oil, Vinegar, High Fructose Corn Syrup, Modified Food Starch, Sugar, Salt, Eggs, Egg Yolks, Mustard Flour, Artificial Color, Potassium Sorbate as a Preservative, Paprika, Spice, Natural Flavor, Dried Garlic.', N'Refrigerate after Opening.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (334, N'', N'', N'21000645329 ', 37, 117, 6.3700, 19, N'', 29, 10, 1, 295, NULL, N'', N'', N'K-Pareve', N'', N'', 1, NULL, 15, N'G', 200, N'', 20, 40, N'30', 3, 5, N'0', N'0', N'0', N'', N'1.5', N'0.5', N'-5', N'1', 125, 5, N'', N'', 2, 1, N'', N'', 2, N'', N'', N'', 0, N'', NULL, N'Water, Soybean Oil, Vinegar, High Fructose Corn Syrup, Modified Food Starch, Sugar, Salt, Eggs, Egg Yolks, Mustard Flour, Artificial Color, Potassium Sorbate as a Preservative, Paprika, Spice, Natural Flavor, Dried Garlic.', N'Refrigerate after Opening.', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (335, N'', N'', N'21000653713 ', 37, 106, 5.3200, 49, N'Thick ''n Creamy', 2, 7.25, 4, 206, NULL, N'', N'', N'', N'', N'', 2.5, 4, 70, N'G', 200, N'', 3, 250, N'20', 2, 3, N'1', N'5', N'0', N'', N'', N'', N'5', N'2', 580, 24, N'', N'', 50, 17, N'2', N'8', 8, N'', N'', N'', 9, N'', NULL, N'Enriched Macaroni Product (Wheat Flour, Niacin, Ferrous Sulfate [Iron], Thiamin Mononitrate [Vitamin B1], Riboflavin [Vitamin B2], Folic Acid); Cheese Sauce Mix (Whey, Modified Food Starch, Milkfat, Salt, Milk Protein Concentrate, Contains less than 2% of Sodium Tripolyphosphate, Cellulose Gel, Cellulose Gum, Citric Acid, Sodium Phosphate, Lactic Acid, Calcium Phosphate, Milk, Yellow 5, Yellow 6, Enzymes, Cheese Culture).', N'', N'Contains: Wheat, Milk.', N'0', N'0', 10, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (336, N'', N'', N'21000658831 ', 37, 106, 5.1700, 49, N'Original', 2, 7.25, 4, 206, NULL, N'', N'', N'', N'', N'', 2.5, 4, 70, N'G', 200, N'', 3, 260, N'30', 3.5, 5, N'2', N'10', N'0', N'', N'', N'', N'15', N'5', 580, 24, N'', N'', 48, 16, N'1', N'4', 6, N'', N'', N'', 9, N'10', NULL, N'Enriched Macaroni Product (Durum Wheat Flour, Wheat Flour, Niacin, Ferrous Sulfate [Iron], Thiamin Mononitrate [Vitamin B1], Riboflavin [Vitamin B2], Folic Acid), Cheese Sauce Mix (Whey, Milkfat, Milk Protein Concentrate, Salt, Sodium Tripolyphosphate, Contains less than 2% of Citric Acid, Lactic Acid, Sodium Phosphate, Calcium Phosphate, Milk, Yellow 5, Yellow 6, Enzymes, Cheese Culture).', N'', N'Contains: Wheat, Milk.', N'0', N'0', 10, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (337, N'', N'', N'21000658862 ', 37, 106, 5.6700, 49, N'Deluxe - Original', 2, 14, 4, 397, NULL, N'', N'', N'', N'', N'', 3.5, 4, 98, N'G', 200, N'', 4, 320, N'90', 10, 15, N'3', N'15', N'0', N'', N'', N'', N'15', N'5', 930, 39, N'', N'', 45, 15, N'1', N'4', 4, N'', N'', N'', 12, N'15', NULL, N'Enriched Macaroni Product (Wheat Flour, Niacin, Ferrous Sulfate [Iron], Thiamin Mononitrate [Vitamin B1], Riboflavin [Vitamin B2], Folic Acid), Cheese Sauce (Milk, Whey, Water, Canola Oil, Milk Protein Concentrate, Salt, Sodium Phosphate, Contains less than 2% of Whey Protein Concentrate, Sodium Alginate, Sorbic Acid as a preservative, Lactic Acid, Milkfat, Oleoresin Paprika [color], Annatto [color], Natural Flavor, Cheese Culture Enzymes).', N'', N'Contains: Wheat, Milk.', N'4', N'0', 15, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (338, N'', N'', N'21000658947 ', 37, 106, 3.3400, 49, N'Family Size', 2, 14.5, 4, 411, NULL, N'', N'', N'', N'', N'', 2.5, 4, 70, N'G', 200, N'', 6, 260, N'30', 3.5, 5, N'2', N'10', N'0', N'', N'', N'', N'15', N'5', 580, 24, N'', N'', 48, 16, N'1', N'4', 6, N'', N'', N'', 9, N'10', NULL, N'Enriched Macaroni Product (Wheat Flour, Niacin, Ferrous Sulfate [Iron], Thiamin Mononitrate [Vitamin B1], Riboflavin [Vitamin B2], Folic Acid); Cheese Sauce Mix (Whey, Milkfat, Milk Protein Concentrate, Salt, Sodium Tripolyphosphate, Contains less than 2% of Citric Acid, Lactic Acid, Sodium Phosphate, Calcium Phosphate, Milk, Yellow 5, Yellow 6, Enzymes, Cheese Culture).', N'', N'Contains: Wheat, Milk.', N'0', N'0', 10, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (339, N'', N'', N'21000658978 ', 37, 106, 13.5700, 49, N'Spirals', 2, 5.5, 4, 156, NULL, N'', N'', N'', N'', N'', 2.5, 4, 70, N'G', 200, N'', 2, 260, N'30', 3.5, 5, N'2', N'10', N'0', N'', N'', N'', N'15', N'5', 580, 24, N'', N'', 48, 16, N'1', N'4', 6, N'', N'', N'', 9, N'', NULL, N'Enriched Macaroni Product (Wheat Flour, Durum Wheat Flour, Niacin, Ferrous Sulfate [Iron], Thiamin Mononitrate [Vitamin B1], Riboflavin [Vitamin B2], Folic Acid); Cheese Sauce Mix (Whey, Milkfat, Milk Protein Concentrate, Salt, Sodium Tripolyphosphate, Contains less than 2% of Citric Acid, Lactic Acid, Sodium Phosphate, Calcium Phosphate, Milk, Yellow 5, Yellow 6, Enzymes, Cheese Culture).', N'', N'', N'0', N'0', 10, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (340, N'', N'', N'21000671496 ', 37, 107, 0.7000, 49, N'Original', 2, 38.7, 4, 1.09, NULL, N'', N'', N'', N'', N'', 2, 4, 61, N'G', 200, N'', 18, 240, N'60', 6, 9, N'2.5', N'13', N'', N'', N'', N'', N'5', N'2', 570, 24, N'', N'', 40, 13, N'-1', N'4', 8, N'', N'', N'', 7, N'', NULL, N'Enriched Macaroni Product (Wheat Flour, Glyceryl Monostearate, Niacin, Ferrous Sulfate [Iron], Thiamin Mononitrate [Vitamin B1], Riboflavin [Vitamin B2], Folic Acid), Cheese Sauce Mix (Whey, Partially Hydrogenated Soybean Oil, Modified Food Starch, Corn Syrup Solids, Salt, Milkfat, Milk Protein Concentrate, Calcium Phosphate, Contains less than 2% of Medium Chain Triglycerides, Sodium Tripolyphosphate, Citric Acid, Sodium Phosphate, Lactic Acid, Milk, Apocarotenal [Color], Yellow 5, Yellow 6, Artificial Flavor, Enzymes, Cheese Culture).', N'', N'', N'4', N'0', 20, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (341, N'', N'', N'21000686827 ', 37, 172, 4.7900, 27, N'Garlic Herb Chicken with Green Beans Almondine', 2, 10, 4, 283, NULL, N'', N'', N'USDA Inspected', N'', N'', 10, 4, 283, N'G', 200, N'', 1, 270, N'100', 11, 17, N'2', N'10', N'0', N'', N'4.5', N'4', N'65', N'22', 660, 28, N'', N'', 13, 4, N'4', N'16', 3, N'', N'', N'', 28, N'44', NULL, N'Grilled Fully Cooked Skinless Boneless Chicken Breast Fillet with Rib Meat (Chicken Breast Meat with Rib Meat, Water, Modified Food Starch, Salt, Seasoning [White Pepper, Black Pepper, Garlic Powder, Celery Powder]), Green Beans, Water, Contains less than 2% of Soybean Oil, Almonds, Chicken Stock, Modified Food Starch, Parsley, Salt, Garlic, Dried Garlic, Chicken Fat, Vinegar, Dried Onions, Whey (from Milk), Spice, Enzyme Modified Butteroil, Soy Lecithin, Guar Gum, Autolyzed Yeast Extract, Soy Sauce (Wheat, Soybeans, Salt), Dehydrated Butter, Mustard Flour, Caramel Color, Wheat Bran, Wheat, Molasses, Flavor, Annatto (Color), Turmeric (Color). ', N'Keep Frozen', N'Manufactured on equipment that processes Peanuts and other Tree Nuts.', N'8', N'10', 8, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (342, N'', N'', N'22592007014 ', 52, 135, 2.2800, 55, N'', 18, 16.9, 1, 0.5, NULL, N'', N'', N'OU', N'', N'', NULL, NULL, NULL, N'', NULL, N'', NULL, NULL, N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', NULL, NULL, N'', N'', NULL, NULL, N'', N'', NULL, N'', N'', N'', NULL, N'', NULL, N'Natural Spring Water.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (343, N'', N'', N'22592008578 ', 52, 135, 8.8600, 55, N'', 18, 20, 1, 591, NULL, N'', N'', N'OU', N'', N'', NULL, NULL, NULL, N'', NULL, N'', NULL, NULL, N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', NULL, NULL, N'', N'', NULL, NULL, N'', N'', NULL, N'', N'', N'', NULL, N'', NULL, N'Natural Spring Water.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (344, N'', N'', N'22592053028 ', 52, 135, 5.0100, 55, N'', 18, 21.6, 1, 12, NULL, N'', N'', N'OU', N'', N'', NULL, NULL, NULL, N'', NULL, N'', NULL, NULL, N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', NULL, NULL, N'', N'', NULL, NULL, N'', N'', NULL, N'', N'', N'', NULL, N'', NULL, N'Natural Spring Water.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (345, N'', N'', N'22592055220 ', 52, 135, 13.4800, 55, N'', 18, 672, 1, 19.88, NULL, N'', N'', N'OU', N'', N'', NULL, NULL, NULL, N'', NULL, N'', NULL, NULL, N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', NULL, NULL, N'', N'', NULL, NULL, N'', N'', NULL, N'', N'', N'', NULL, N'', NULL, N'Natural Spring Water.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (346, N'', N'', N'22592334158 ', 52, 135, 9.2500, 55, N'', 18, 101.4, 1, 3, NULL, N'', N'', N'OU', N'', N'', NULL, NULL, NULL, N'', NULL, N'', NULL, NULL, N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', NULL, NULL, N'', N'', NULL, NULL, N'', N'', NULL, N'', N'', N'', NULL, N'', NULL, N'Natural Spring Water.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (347, N'', N'', N'22592431147 ', 52, 135, 13.0600, 55, N'Pop Top Bottle', 18, 23.7, 1, 700, NULL, N'', N'', N'OU', N'', N'', 23.7, 1, 700, N'ML', 188, N'', NULL, NULL, N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', NULL, NULL, N'', N'', NULL, NULL, N'', N'', NULL, N'', N'', N'', NULL, N'', NULL, N'Natural Spring Water.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (348, N'', N'', N'22592532219 ', 52, 135, 7.9500, 55, N'', 8, 663.6, 1, 19.6, NULL, N'', N'', N'', N'', N'', 23.7, 1, 700, N'ML', 188, N'', NULL, NULL, N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', NULL, NULL, N'', N'', NULL, NULL, N'', N'', NULL, N'', N'', N'', NULL, N'', NULL, N'Natural Spring Water.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (349, N'', N'', N'22592777719 ', 52, 135, 12.0100, 55, N'', 8, 202.8, 1, 6, NULL, N'', N'', N'', N'', N'', 16.9, 1, 0.5, N'L', 191, N'', NULL, NULL, N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', NULL, NULL, N'', N'', NULL, NULL, N'', N'', NULL, N'', N'', N'', NULL, N'', NULL, N'Natural Spring Water.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (350, N'', N'', N'24000018308 ', 16, 48, 2.3000, 17, N'Fresh Cut - Blue Lake', 3, 28, 4, 794, NULL, N'', N'', N'K', N'', N'', 4, 4, 121, N'G', 200, N'', 7, 20, N'', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 390, 16, N'', N'', 4, 1, N'2', N'8', 2, N'', N'', N'', 1, N'', NULL, N'Green Beans, Water, Salt (for flavor).', N'', N'', N'6', N'4', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (351, N'', N'', N'24000041061 ', 16, 38, 1.4400, 73, N'', 3, 6, 4, 170, NULL, N'', N'', N'K', N'', N'', 2, NULL, 33, N'G', 200, N'', 5, 30, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 20, 1, N'', N'', 6, 2, N'1', N'6', 3, N'', N'', N'', 2, N'', NULL, N'Tomatoes.', N'', N'', N'10', N'10', 0, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (352, N'', N'', N'24000162728 ', 16, 48, 11.1700, 17, N'Fresh Cut - Blue Lake', 2, 174, 4, 4.94, NULL, N'', N'', N'K', N'', N'', 4, 4, 121, N'G', 200, N'', 42, 20, N'', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 390, 16, N'', N'', 4, 1, N'2', N'8', 2, N'', N'', N'', 1, N'', NULL, N'Green Beans, Water, Salt (for flavor).', N'', N'', N'6', N'4', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (353, N'', N'', N'24000162865 ', 16, 48, 6.6500, 17, N'Fresh Cut - Blue Lake', 3, 14.5, 4, 411, NULL, N'', N'', N'K', N'', N'', 4, 4, 121, N'G', 200, N'', 3.5, 20, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 390, 16, N'', N'', 4, 1, N'2', N'8', 2, N'', N'', N'', 1, N'', NULL, N'Green Beans, Water, Salt (for flavor).', N'', N'', N'6', N'4', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (354, N'', N'', N'24100121960 ', 35, 29, 2.9300, 3, N'Cheesy Sour Cream & Onion', 2, 14, 4, 396, NULL, N'', N'', N'', N'', N'', 1.1, 4, 30, N'G', 200, N'', 13, 160, N'70', 8, 12, N'2', N'10', N'0.5', N'', N'', N'', N'0', N'0', 250, 10, N'', N'', 19, 6, N'-1', N'1', -1, N'', N'', N'', 3, N'', NULL, N'Enriched Flour (Wheat Flour, Niacin, Reduced Iron, Thiamin Mononitrate [Vitamin B1], Riboflavin [Vitamin B2], Folic Acid), Vegetable Oil (Canola, Cottonseed, Palm, Sunflower and/or Partially Hydrogenated Soybean Oil with TBHQ for freshness), Cheddar Cheese (Milk, Cheese Cultures, Salt, Enzymes, Annatto Color), Salt, Contains two percent or less of Sour Cream (Cultured Cream, Nonfat Dry Milk), Onion, MSG, Leavening (Baking Soda, Yeast), Cornstarch, Dextrose, Corn Syrup Solids, Annatto Extract Color, Turmeric Oleoresin for Color, Paprika Oleoresin Color, Citric Acid, Sodium Caseinate, Onion Juice Concentrate, Disodium Phosphate, Disodium Guanylate, Lactic Acid, Disodium Inosinate, Vinegar Solids, Natural Flavor, Garlic, Carrageenan, Artificial Colors (Yellow #6, Red #40 Lake, Yellow #6 Lake, Blue #1 Lake), Soy Lecithin.', N'', N'Contains Wheat, Milk and Soy ingredients.', N'0', N'0', 0, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (355, N'', N'', N'24100122035 ', 35, 178, 5.4700, 3, N'', 2, 48, 4, 1.36, NULL, N'', N'', N'K-D', N'', N'', 1.1, 4, 30, N'G', 200, N'', 45, 160, N'70', 8, 12, N'2', N'10', N'0', N'', N'', N'', N'0', N'0', 250, 10, N'', N'', 18, 6, N'-1', N'2', -1, N'', N'', N'', 4, N'', NULL, N'Enriched Flour (Wheat Flour, Niacin, Reduced Iron, Thiamin Mononitrate [Vitamin B1], Riboflavin [Vitamin B2], Folic Acid), Vegetable Oil (Canola, Cottonseed, Palm, Sunflower and/or Partially Hydrogenated Soybean Oil with TBHQ added for freshness), Skim Milk Cheese (Skim Milk, Whey Protein, Cheese Cultures, Salt, Enzymes, Annatto Extract for color), Contains two percent or less of Milk, Salt, Paprika, Yeast, Paprika Oleoresin for color, Cheese Cultures, Soy Lecithin.', N'', N'Contains Wheat, Milk and Soy ingredients.', N'2', N'0', 4, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (356, N'', N'', N'24100122387 ', 35, 31, 10.4800, 3, N'', 2, 13.5, 4, 382, NULL, N'', N'', N'K-D', N'', N'', 1.1, 4, 30, N'G', 200, N'', 12, 130, N'40', 4, 6, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 360, 15, N'', N'', 20, 7, N'-1', N'3', 0, N'', N'', N'', 4, N'', NULL, N'Enriched Flour (Wheat Flour, Niacin, Reduced Iron, Thiamin Mononitrate [Vitamin B1], Riboflavin [Vitamin B2], Folic Acid), Vegetable Oil (Canola, Cottonseed, Palm, Sunflower and/or Partially Hydrogenated Soybean Oil with TBHQ added for freshness), Skim Milk Cheese (Skim Milk, Whey Protein, Cheese Cultures, Salt, Enzymes, Annatto Extract for Color), Salt, Milk, Contains 2% or less of Natural Flavor, Paprika, Yeast, Cheese Cultures, Paprika Oleoresin for Color, Soy Lecithin.', N'', N'Contains Wheat, Milk and Soy ingredients.', N'2', N'0', 4, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (357, N'', N'', N'24100226429 ', 35, 29, 7.6300, 3, N'', 2, 4.5, 4, 127, NULL, N'', N'', N'K-D', N'', N'', 1.1, 4, 30, N'G', 200, N'', 4, 160, N'70', 8, 12, N'2.5', N'13', N'0', N'', N'', N'', N'0', N'0', 250, 10, N'', N'', 18, 6, N'-1', N'2', -1, N'', N'', N'', 4, N'', NULL, N'Enriched Flour (Wheat Flour, Niacin, Reduced Iron, Thiamin Mononitrate [Vitamin B1], Riboflavin [Vitamin B2], Folic Acid), Vegetable Oil (Cottonseed, Palm, Sunflower and/or Partially Hydrogenated Soybean Oil with TBHQ added for freshness), Skim Milk Cheese (Skim Milk, Whey Protein, Cheese Cultures, Salt, Enzymes, Annatto Extract [Color]), Salt, Paprika, Yeast, Paprika Oleoresin (color).', N'', N'Contains wheat and milk ingredients.', N'2', N'0', 4, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (358, N'', N'', N'24100236015 ', 35, 30, 9.5300, 3, N'', 2, 8.1, 4, 229, NULL, N'', N'', N'', N'', N'', 0.9, 4, 25, N'G', 200, N'', 9, 130, N'50', 6, 9, N'1', N'5', N'', N'', N'', N'', N'0', N'0', 240, 10, N'', N'', 16, 5, N'-1', N'1', -1, N'', N'', N'', 3, N'', NULL, N'Enriched Flour (Wheat Flour, Niacin, Reduced Iron, Thiamin Mononitrate [Vitamin B1], Riboflavin [Vitamin B2], Folic Acid), Vegetable Oil (Canola, Cottonseed, Sunflower and/or Partially Hydrogenated Soybean with TBHQ added for freshness), Skim Milk Cheese (Skim Milk, Whey Protein, Cheese Cultures, Salt, Enzymes, Annatto Extract for color), White Cheddar Cheese (Milk, Cheese Cultures, Salt, Enzymes), Salt, Contains two percent or less of Paprika, Natural Flavor, Yeast, Onion, Red Pepper, Yellow #5, Celery Seed, Annatto Color, Paprika Oleoresin for color, Yellow #6, Soy Lecithin.', N'', N'Contains Wheat, Milk and Soy ingredients.', N'2', N'0', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (359, N'', N'', N'24626010076 ', 66, 157, 0.3200, 5, N'', 30, 1, 4, 28, NULL, N'', N'', N'USDA Inspected', N'', N'', 1, 4, 28, N'G', 200, N'', 1, 90, N'10', 1, 1.5, N'0', N'0', N'', N'', N'', N'', N'20', N'6', 330, 14, N'', N'', 1, 0, N'0', N'0', 0, N'', N'', N'', 20, N'', NULL, N'Beef, Water, Salt, Sugar, Spices, Sodium Nitrite', N'', N'', N'0', N'0', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (360, N'', N'', N'24626012803 ', 66, 157, 5.2000, 5, N'', 30, 1.1, 4, 30, NULL, N'', N'', N'USDA Inspected', N'', N'', 1, 4, 28, N'G', 200, N'', 1, 90, N'10', 1, 1.5, N'0', N'0', N'', N'', N'', N'', N'20', N'6', 330, 14, N'', N'', 1, 0, N'0', N'0', 0, N'', N'', N'', 20, N'', NULL, N'Beef, Water, Salt, Sugar, Spices, Sodium Nitrite', N'', N'', N'0', N'0', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (361, N'', N'', N'24626255552 ', 66, 157, 1.3800, 5, N'', 30, 2.5, 4, 70, NULL, N'', N'', N'USDA Inspected', N'', N'', 1, 4, 28, N'G', 200, N'', 2.5, 90, N'10', 1, 1.5, N'0', N'0', N'', N'', N'', N'', N'20', N'6', 330, 14, N'', N'', 1, 0, N'0', N'0', 0, N'', N'', N'', 20, N'', NULL, N'Beef, Water, Salt, Sugar, Spices, Sodium Nitrite', N'', N'', N'0', N'0', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (362, N'', N'', N'24626331287 ', 66, 113, 3.5600, 5, N'', 30, 1, 4, 28, NULL, N'', N'', N'USDA Inspected', N'', N'', 1, 4, 28, N'G', 200, N'', 1, 90, N'10', 1, 1.5, N'0', N'0', N'', N'', N'', N'', N'20', N'6', 330, 14, N'', N'', 1, 0, N'0', N'0', 0, N'', N'', N'', 20, N'', NULL, N'Beef, Water, Salt, Sugar, Spices, Sodium Nitrite', N'', N'', N'0', N'0', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (363, N'', N'', N'25000026065 ', 13, 116, 6.0100, 59, N'Original Low Pulp', 4, 64, 1, 1.89, NULL, N'', N'', N'K, AHA ', N'U.S.A., Brazil, and Costa Rica', N'Contains Orange Juice Concentrate from the U.S.A., Brazil, and Costa Rica.', 8, 1, 240, N'ML', 188, N'', 8, 110, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 15, 1, N'450', N'13', 27, 9, N'', N'', 24, N'', N'', N'', 2, N'', NULL, N'Pure Squeezed Orange Juice from Concentrate, Contains Pure Filtered Water, Premium Concentrated Orange Juice.', N'Keep Refrigerated', N'', N'', N'120', 2, N'', NULL, N'', N'', N'10', N'', N'2', N'', NULL, N'4', NULL, N'', N'', N'', NULL, NULL, N'6', N'', N'', N'', N'', N'', N'', N'', N'', N'15', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (364, N'', N'', N'25000054167 ', 69, 162, 4.3700, 59, N'Country Stand Medium Pulp Calcium', 6, 59, 1, 1.75, NULL, N'', N'', N'K, AHA ', N'', N'', 8, 1, 240, N'ML', 188, N'', 7, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 0, 0, N'450', N'13', 26, 9, N'', N'', 22, N'', N'', N'', 2, N'', NULL, N'Orange Juice, Tricalcium Phosphate, and Calcium Lactate.', N'Keep Refrigerated', N'', N'', N'120', 2, N'', NULL, N'', N'', N'10', N'', N'2', N'', NULL, N'4', NULL, N'', N'', N'', NULL, NULL, N'6', N'', N'', N'', N'', N'', N'', N'', N'', N'15', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (365, N'', N'', N'25000055423 ', 69, 162, 2.5200, 59, N'Original Pulp Free', 6, 59, 1, 1.75, NULL, N'', N'', N'K, AHA ', N'', N'', 8, 1, 240, N'ML', 188, N'', 7, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 0, 0, N'450', N'13', 26, 9, N'', N'', 22, N'', N'', N'', 2, N'', NULL, N'Florida Squeezed Orange Juice.', N'Keep Refrigerated', N'', N'', N'120', 2, N'', NULL, N'', N'', N'10', N'', N'2', N'', NULL, N'4', NULL, N'', N'', N'', NULL, NULL, N'6', N'', N'', N'', N'', N'', N'', N'', N'', N'15', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (366, N'', N'', N'25000055430 ', 69, 162, 14.0500, 59, N'Calcium Pulp Free', 6, 59, 1, 1.75, NULL, N'', N'', N'K, AHA ', N'', N'', 8, 1, 240, N'ML', 188, N'', 7, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 0, 0, N'450', N'13', 26, 9, N'', N'', 22, N'', N'', N'', 2, N'', NULL, N'Orange Juice, Tricalcium Phosphate, and Calcium Lactate.', N'Keep Refrigerated', N'', N'', N'120', 32, N'', NULL, N'', N'', N'10', N'', N'2', N'', NULL, N'4', NULL, N'', N'', N'', NULL, NULL, N'6', N'', N'', N'', N'', N'', N'', N'', N'', N'15', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (367, N'', N'', N'25000055430 ', 69, 162, 14.4200, 59, N'Calcium Pulp Free', 6, 59, 1, 1.75, NULL, N'', N'', N'K, AHA ', N'', N'', 8, 1, 240, N'ML', 188, N'', 7, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 0, 0, N'450', N'13', 26, 9, N'', N'', 22, N'', N'', N'', 2, N'', NULL, N'Orange Juice, less than 1% of: Calcium Phosphate and Calcium Lactate.', N'Keep Refrigerated', N'', N'', N'140', 35, N'', NULL, N'', N'', N'10', N'', N'2', N'', NULL, N'4', NULL, N'', N'', N'', NULL, NULL, N'6', N'', N'', N'', N'', N'', N'', N'', N'', N'15', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (368, N'', N'', N'25000055447 ', 69, 162, 9.7900, 59, N'Grove Made High Pulp', 6, 59, 1, 1.75, NULL, N'', N'', N'K, AHA ', N'', N'', 8, 1, 240, N'ML', 188, N'', 7, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 0, 0, N'450', N'13', 26, 9, N'', N'', 22, N'', N'', N'', 2, N'', NULL, N'Florida Squeezed Orange Juice.', N'Keep Refrigerated', N'', N'', N'120', 2, N'', NULL, N'', N'', N'10', N'', N'2', N'', NULL, N'4', NULL, N'', N'', N'', NULL, NULL, N'6', N'', N'', N'', N'', N'', N'', N'', N'', N'15', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (369, N'', N'', N'25000063213 ', 13, 116, 4.2500, 59, N'Original', 7, 10, 1, 295, NULL, N'', N'', N'K', N'', N'', 10, 1, 295, N'ML', 188, N'', 1, 140, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 20, 1, N'550', N'16', 33, 11, N'', N'', 30, N'', N'', N'', 2, N'', NULL, N'Pure Filtered Water, Premium Concentrated Orange Juice.', N'', N'', N'', N'70', 2, N'', NULL, N'', N'', N'15', N'', N'4', N'', NULL, N'6', NULL, N'', N'', N'', NULL, NULL, N'8', N'', N'', N'', N'', N'', N'', N'', N'', N'20', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (370, N'', N'', N'25800024117 ', 26, 186, 9.3000, 6, N'Meatloaf', 2, 9.5, 4, 269, NULL, N'', N'', N'USDA Inspected', N'', N'', 9.5, 4, 269, N'G', 200, N'', 1, 250, N'70', 8, 13, N'3', N'15', N'0', N'', N'1.5', N'2', N'45', N'16', 880, 37, N'', N'', 23, 8, N'3', N'10', 2, N'', N'', N'', 22, N'', NULL, N'Water, Cooked Meatloaf (Beef, Water, Onions, Diced Red and Green Bell Peppers, Soy Protein Concentrate, Catsup [Tomato Concentrate (Water, Tomato Paste), High Fructose Corn Syrup, Corn Syrup, Vinegar, Salt, Onion Powder, Spice, Natural Flavors], Seasoning [Salt, Onion Powder, Autolyzed Yeast Extract, Hydrolyzed Soy Protein, Modified Food Starch, Flavor (Contains Decolorized Soy Sauce [Water, Soybeans, Salt], Dextrose, Modified Corn Starch, Celery Extract), Garlic Powder, Sugar, Spices, Turmeric, Dextrose, Caramel Color, Disodium Inosinate, Disodium Guanylate]), Potatoes, Contains 2% or less of: Margarine (Soybean Oil, Water, Salt, Partially Hydrogenated Soybean Oil, Mono- and Diglycerides, Soy Lecithin, Sodium Benzoate, Natural Flavor, Artificial Flavor, Beta Carotene [Color], Vitamin A Palmitate), Diced Tomatoes (Tomatoes, Tomato Juice, Salt, Calcium Chloride, Citric Acid), Tomato Paste, Corn Maltodextrin, Modified Cornstarch, Cream Powder (Cream, Soy Lecithin), Beef Au Jus Concentrate (Beef Stock, Flavor, Soy Sauce [Water, Wheat, Soybeans, Salt, Sodium Benzoate], Beef Fat, Caramel Color, Cultured Whey [Milk], Cornstarch, Onion Powder, Sugar, Garlic Powder, Salt, Modified Cornstarch, Potato Starch, Beet Powder, Lactic Acid, Corn Syrup Solids), Nonfat Milk, Beef Type Flavor (Hydrolyzed Corn Gluten, Soy Protein and Wheat Gluten, Autolyzed Yeast Extract, Dextrose, Partially Hydrogenated Cottonseed and Soybean Oils), Yeast Extract, Roasted Garlic Puree (Garlic, High Maltose Corn Syrup Solids), Onions, Salt, Sugar, Corn Oil, Red Bell Pepper, Roasted Red Pepper Paste (Roasted Red Bell Peppers, Dextrose, Water, Salt, Yeast Extract, Potato Starch, Natural Flavoring, Soy Sauce [Water, Soybeans, Wheat, Salt]), Worcestershire Sauce (Distilled Vinegar, Molasses, Corn Syrup, Water, Salt, Caramel Color, Garlic Powder, Sugar, Spices, Anchovies, Tamarind, Natural Flavor, Sulfites added as Preservatives), Xanthan Gum, Parsley, Pepper (White, Black), Emulsifier (Mono- and Diglycerides, Nonfat Milk, Wheat Starch), Chives, Spice, Granulated Garlic, Spice Extractives, Concentrated Onion Juice (Onion Juice, Sunflower Oil).', N'Keep Frozen', N'Contains Fish (Anchovies), Milk, Soybeans, Wheat. This product Contains Worcestershire Sauce, which Contains Sulfites.', N'2', N'8', 6, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (371, N'', N'', N'25800026463 ', 26, 186, 2.6400, 6, N'Picante Chicken & Pasta', 2, 9, 4, 255, NULL, N'', N'', N'USDA Inspected', N'', N'', 9, 4, 255, N'G', 200, N'', 1, 260, N'35', 4, 6, N'0.5', N'3', N'0', N'', N'1', N'1.5', N'25', N'9', 480, 20, N'', N'', 32, 11, N'4', N'16', -1, N'', N'', N'', 23, N'', NULL, N'Cooked Enriched Macaroni Product (Water, Enriched Semolina [Semolina, Niacin, Ferrous Sulfate, Thiamine Mononitrate, Riboflavin, Folic Acid]), Cooked White Meat Chicken (White Meat Chicken, Water, Modified Tapioca Starch, Sugar, Salt, Sodium Phosphate, Glazed with Water, Caramel Coloring, Modified Potato Starch), Diced Tomatoes (Tomatoes, Tomato Juice, Salt, Calcium Chloride, Citric Acid), Yellow Bell Peppers, Sauted Onions (Onions, Soybean Oil), Water, Black Beans, Contains 2% or less of: Jalapenos (Jalapeno Peppers, Salt, Citric Acid), Sauted Garlic (Garlic, Soybean Oil), Canola Oil, Ancho Chili Base (Chili Peppers, Dried Onion and Garlic, Yeast Extract, Salt, Spice, Beef Extract, Citric Acid), Modified Cornstarch, Cilantro Flavor, Red Pepper, Sour Cream Flavor (Maltodextrin [Corn], Nonfat Dry Milk, Partially Hydrogenated Soybean Oil, Sugar, Lactose, Whey [Milk], Corn Syrup Solids, Sodium Caseinate [Milk], Flavoring, Mono- and Diglycerides, Sodium Citrate, Salt, Dipotassium Phosphate, Modified Cornstarch, Carrageenan), Salt, Spices, Corn Oil, Chicken Base (Chicken, Salt, Hydrolyzed Soy Protein, Chicken Fat, Corn Maltodextrin, Sugar, Chicken Broth, Onion Powder, Turmeric, Spice Extractives), Xanthan Gum, Stabilizer (Maltodextrin [Corn], Monoglyceride, Soy Lecithin, Xanthan Gum, Guar Gum, Methylcellulose Gum, Citric Acid), Lime Flavor, Chicken Flavor (Autolyzed Yeast Extract, Salt, Maltodextrin [Corn], Gum Arabic, Chicken Fat, Torula Yeast, Natural Flavor, Turmeric), Chili Type Flavor (Maltodextrin [Corn], Sesame Oil, Flavor, Peanut Oil, Smoke Flavor [BHT, BHA, Propyl Gallate, Citric Acid]), Annatto (color).', N'Keep Frozen', N'Contains Peanuts, Milk, Soybeans, Wheat.', N'6', N'15', 6, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (372, N'', N'', N'25800029013 ', 26, 186, 6.2300, 6, N'Sirloin Beef & Asian Style Vegetables', 2, 9, 4, 255, NULL, N'', N'', N'USDA Inspected', N'', N'', 9, 4, 255, N'G', 200, N'', 1, 160, N'35', 4, 6, N'2', N'9', N'0', N'', N'0.5', N'2', N'35', N'12', 680, 28, N'', N'', 13, 4, N'3', N'12', 5, N'', N'', N'', 17, N'', NULL, N'Seasoned Cooked Beef Sirloin Filets Water and Binder Product (Beef, Water, and less than 2% Dextrose, Modified Cornstarch, Salt, Sodium Phosphates, Seasoning [Autolyzed Yeast Extract, Corn Maltodextrin, Tapioca Dextrin, Sunflower Oil, Flavor, Potassium Phosphate, Contains less than 2% Barley Malt Flour, Grill Flavor (from Partially Hydrogenated Cottonseed and Soybean Oil), Smoke Flavor, Tapioca Starch], Hydrolyzed Soy Protein, Caramel Color, Beef Flavor [Beef Broth, Monosodium Phosphate, Flavor, Beef Tallow], Flavor, Autolyzed Yeast Extract), Water, Sugar Snap Peas, Bean Sprouts, Red Bell Peppers, Onion, Water Chestnuts, Mushrooms, Contains 2% or less of Soy Sauce (Water, Wheat, Soybeans, Salt, Alcohol, Vinegar, Lactic Acid), Teriyaki Sauce (Soy Sauce [Water, Wheat, Soybeans, Salt], Wine [Contains Sulfites], Sugar, Water, Vinegar, Salt, Spices, Onion Powder, Succinic Acid, Garlic Powder), Modified Cornstarch, Chili Garlic Sauce (Chili Pepper, Garlic, Water, Salt, Sugar, Rice Vinegar, Acetic Acid, Modified Cornstarch), Molasses (may contain Sulfites), Green Onions, Concentrated Mushroom Juice (Mushroom Juice, Sunflower Oil), Ginger, Sauted Garlic (Garlic, Soybean Oil), Chicken Fat, Lime Juice Concentrate, Sesame Seed Oil, Xanthan Gum, Chicken Broth Powder (Chicken Broth, Salt, Flavoring), Dextrose, Chicken Flavor (Autolyzed Yeast Extract, Chicken Broth, Water, Salt, Flavor), Sucralose (Water, Sucralose, Citric Acid, Sodium Citrate, Potassium Sorbate, Sodium Benzoate).', N'Keep Frozen', N'Contains Soybeans, Wheat.', N'4', N'15', 4, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (373, N'', N'', N'25800029082 ', 26, 186, 2.9300, 6, N'Turkey Medallions with Mushroom Gravy', 2, 9, 4, 255, NULL, N'', N'', N'USDA Inspected', N'', N'', 9, 4, 255, N'G', 200, N'', 1, 200, N'90', 10, 15, N'2', N'10', N'0', N'', N'4', N'3', N'35', N'11', 660, 28, N'', N'', 11, 4, N'3', N'13', 3, N'', N'', N'', 18, N'', NULL, N'Green Beans, Oven Roasted Turkey Breast Medallions (Turkey Breast Meat, Water, Seasoning [Autolyzed Yeast Extract, Corn Maltodextrin, Salt, Turkey Flavor, Turkey Stock, Partially Hydrogenated Soybean Oil, Flavor, Gum Arabic], Modified Cornstarch, Salt, Canola Oil, Carrageenan, Sodium Phosphate, Natural Flavoring, Paprika), Water, Mushrooms, Red Bell Peppers, Contains 2% or less of: Turkey Flavor (Corn Oil, Modified Cornstarch, Wheat Flour, Partially Hydrogenated Cottonseed and Soybean Oil, Turkey and Turkey Broth, Dried Whey [Milk], Salt, Autolyzed Yeast Extract, Sauted Carrots, Corn Maltodextrin, Hydrolyzed Corn Gluten, Natural Flavor, Distilled Monoglycerides, Roast Turkey Type Flavor [Hydrolyzed Corn Protein, Autolyzed Yeast Extract, Flavor], Chicken Type Flavor [Soy Sauce (Water, Soybeans, Wheat, Salt), Disodium Inosinate, Disodium Guanylate, Dried Chicken Meat, Caramel Color, Lipolyzed Butter Oil, Flavor (Contains Karaya Gum)]), Corn Oil, Margarine (Soybean Oil, Water, Salt, Partially Hydrogenated Soybean Oil, Mono- and Diglycerides, Soy Lecithin, Sodium Benzoate, Natural Flavor, Artificial Flavor, Beta Carotene [Color], Vitamin A Palmitate), Modified Tapioca Starch, Chicken Fat, Chicken Type Flavor (Flavor, Autolyzed Yeast Extract, Chicken Fat [BHA, Propyl Gallate, Citric Acid], Glycerine, Soy Lecithin), Enriched Wheat Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Salt, Carrot Juice Concentrate, Chicken Broth Powder (Chicken Broth, Salt, Flavoring), Dextrose, Sugar, Chicken Flavor (Autolyzed Yeast Extract, Chicken Broth, Water, Salt, Flavor), Xanthan Gum, Flavor Enhancer (Dextrose, Salt, Autolyzed Yeast Extract, Modified Cornstarch), Soy Lecithin, Pepper (White, Black), Spice Extractives.', N'Keep Frozen', N'Contains Milk, Soybeans, Wheat.', N'8', N'6', 4, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (374, N'', N'', N'25800029112 ', 26, 186, 3.3600, 6, N'Salisbury Steak', 2, 9, 4, 255, NULL, N'', N'', N'USDA Inspected', N'', N'', 9, 4, 255, N'G', 200, N'', 1, 200, N'70', 7, 11, N'2.5', N'13', N'0', N'', N'1.5', N'3', N'40', N'13', 660, 27, N'', N'', 14, 5, N'4', N'14', 3, N'', N'', N'', 19, N'', NULL, N'Cooked Salisbury Steak Patty (Beef, Water, Pork, Onions, Textured Vegetable Protein Product [Soy Protein Concentrate, Caramel Color], Seasoning [Maltodextrin {Corn}, Salt, Hydrolyzed Soy and Corn Protein, Dry Onion, Dry Garlic, Flavoring, Yeast Extract, Spice, Disodium Inosinate, Disodium Guanylate, Extractive of Rosemary, Beef Extract, Modified Cornstarch, Flavor (Triacetin, Butter Acids, Flavorings, Butter Esters), Rendered Beef Fat, Partially Hydrogenated Soybean and Cottonseed Oil], Soy Protein Concentrate, Bread Crumbs [Bleached Wheat Flour, Salt, Dextrose, Yeast, Partially Hydrogenated Soybean and/or Cottonseed Oil], Caramel Color), Asparagus, Water, Mushrooms (Mushrooms, Water, Citric Acid), Contains 2% or less of: Red Bell Peppers, Modified Cornstarch, Margarine (Soybean Oil, Water, Salt, Partially Hydrogenated Soybean Oil, Mono- and Diglycerides, Soy Lecithin, Sodium Benzoate, Natural Flavor, Artificial Flavor, Beta Carotene [Color], Vitamin A Palmitate), Beef Base (Roasted Beef and Concentrated Beef Stock, Hydrolyzed Corn, Soy and Wheat Protein, Autolyzed Yeast Extract, Sugar, Salt, Corn Maltodextrin, Chicken Fat, Corn Oil, Onion Powder, Spice Extractives), Dehydrated Onions, Burgundy Wine (Burgundy Wine, Salt, Sulfites), Salt, Mushroom Base (Sauted Mushrooms, Sugar, Salt, Canola Oil, Onion Powder, Potato Starch, Hydrolyzed Soy and Wheat Proteins, Caramel Color), Hydrolyzed Vegetable Protein (Corn Gluten, Soy Protein and Wheat Gluten), Xanthan Gum, Chicken and Beef Stock Flavor Blend (Potassium Chloride, Corn Syrup Solids, Partially Hydrogenated Soybean Oil, Dehydrated Beef Stock, Dehydrated Chicken Stock, Corn Maltodextrin), Garlic, Sugar, Pepper (Black, White), Flavor Enhancer (Dextrose, Salt, Autolyzed Yeast Extract, Modified Cornstarch), Caramel Color, Seasoning (Salt, Spice Extractives).', N'Keep Frozen', N'Contains Milk, Soybeans, Wheat.', N'10', N'20', 4, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (375, N'', N'', N'25800029143 ', 26, 186, 12.4600, 6, N'Roast Beef', 2, 9, 4, 255, NULL, N'', N'', N'USDA Inspected', N'', N'', 9, 4, 255, N'G', 200, N'', 1, 190, N'70', 8, 12, N'2.5', N'14', N'0', N'', N'1', N'2.5', N'50', N'17', 680, 28, N'', N'', 11, 4, N'3', N'13', 3, N'', N'', N'', 19, N'', NULL, N'Cooked Seasoned Beef Pot Roast Dices and Modified Food Starch Product with Caramel Color added (Beef, Water and less than 1.5% Dextrose, Salt, Modified Cornstarch, Concentrated Beef Stock, Sodium Phosphates, Beef Tallow, Caramel Color, Spice Extractives), Broccoli, Water, Cauliflower, Celery, Onions, Vermouth (Vermouth, Salt, Sulfites), Portobello Mushrooms, Contains 2% or less of: Red Bell Peppers, Sour Cream (Cultured Milk and Cream, Stabilizer [Modified Cornstarch, Gelatin, Guar Gum, Sodium Citrate, Carrageenan, Salt, Locust Bean Gum]), Nonfat Milk, Mushrooms, Margarine (Soybean Oil, Water, Salt, Partially Hydrogenated Soybean Oil, Mono- and Diglycerides, Soy Lecithin, Sodium Benzoate, Natural Flavor, Artificial Flavor, Beta Carotene [Color], Vitamin A Palmitate), Parmesan Cheese (Cultured Milk, Salt, Enzymes), Modified Cornstarch, Enriched Wheat Flour (Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Cream (Cream, Milk, Carrageenan), Salt, Yeast Extract, Olive Oil, Sugar, Chicken Broth Flavor (Hydrolyzed Vegetable Protein [Hydrolyzed Corn Gluten, Dextrose, Disodium Inosinate and Guanylate], Autolyzed Yeast Extract  [Autolyzed Yeast Extract, Natural Flavor], Soy Flour, Lactic Acid, Calcium Lactate, Dried Chicken Broth, Chicken Fat, Dried Chicken Meat, Dried Onion), Caramel Color, Xanthan Gum, Pepper (Black, White, Red), Flavor Enhancer (Dextrose, Salt, Autolyzed Yeast Extract, Modified Cornstarch), Guar Gum, Annatto (Color), Paprika, Mono- and Diglycerides, Spice, Spice Extractives.', N'Keep Frozen', N'Contains Milk, Soybeans, Wheat. This product Contains Wine, which Contains Sulfites.', N'4', N'30', 8, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (376, N'', N'', N'25800029167 ', 26, 186, 5.2600, 6, N'Sweet & Sour Chicken', 2, 9, 4, 255, NULL, N'', N'', N'USDA Inspected', N'', N'', 9, 4, 255, N'G', 200, N'', 1, 140, N'25', 3, 5, N'0.5', N'3', N'0', N'', N'1', N'1', N'45', N'14', 660, 27, N'', N'', 13, 4, N'2', N'10', 7, N'', N'', N'', 16, N'', NULL, N'Cooked White Meat Chicken (White Meat Chicken, Water, Modified Tapioca Starch, Sugar, Salt, Sodium Phosphate, Glazed with Water, Caramel Coloring, Modified Potato Starch), Mushrooms, Water, Tomatoes, Red Bell Peppers, Green Bell Peppers, Onions, Ketchup (Tomato Concentrate, Distilled Vinegar, High Fructose Corn Syrup, Corn Syrup, Salt, Spice, Onion Powder, Natural Flavoring), Pineapple (Pineapple, Pineapple Juice), Vinegar (White Distilled Vinegar, Water), Soy Sauce (Water, Wheat, Soybeans, Salt, Alcohol, Vinegar, Lactic Acid), Contains 2% or less of:  Sherry Wine (Sherry Wine, Salt, Sulfites), Sesame Seed Oil, Modified Cornstarch, Garlic, Sucralose (Water, Sucralose, Citric Acid, Sodium Citrate).', N'Keep Frozen', N'Contains Soybeans, Wheat. This product Contains Wine, which Contains Sulfites.', N'4', N'20', 0, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (377, N'', N'', N'25800029181 ', 26, 186, 7.2700, 6, N'Chicken Santa Fe', 2, 9, 4, 255, NULL, N'', N'', N'USDA Inspected', N'', N'', 9, 4, 255, N'G', 200, N'', 1, 140, N'20', 2.5, 3, N'0', N'0', N'0', N'', N'1', N'0.5', N'30', N'10', 800, 33, N'', N'', 11, 4, N'4', N'15', 6, N'', N'', N'', 20, N'', NULL, N'Cooked White Meat Chicken (White Meat Chicken, Water, Modified Tapioca Starch, Sugar, Salt, Sodium Phosphate, Glazed with Water, Caramel Coloring, Modified Potato Starch), Zucchini, Diced Tomatoes (Tomatoes, Tomato Juice, Calcium Chloride, Citric Acid), Green Bell Peppers, Water, Onions, Black Beans, Red Bell Peppers, Dijon Mustard (Water, Mustard Seed, Distilled Vinegar, Salt, White Wine, Citric Acid, Tartaric Acid, Spices), Contains 2% or less of: Ketchup (Tomato Concentrate, Distilled Vinegar, High Fructose Corn Syrup, Corn Syrup, Salt, Spice, Onion Powder, Natural Flavoring), Chicken Broth Powder (Chicken Broth, Salt, Flavoring), Cider Vinegar (Apple Cider Vinegar, Water), Garlic, Corn Oil, Modified Cornstarch, Green Chili Peppers (Green Chili Peppers, Citric Acid, Salt), Chili Powder (Chili Peppers, Cumin, Oregano, Salt, Garlic), Spice.', N'Keep Frozen', N'', N'10', N'25', 4, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (378, N'', N'', N'26200140957 ', 14, 163, 1.7600, 5, N'SRP $2.99', 30, 1.8, 4, 51, NULL, N'', N'', N'USDA Inspected', N'', N'', 1.8, 4, 51, N'G', 200, N'', 1, 150, N'35', 4, 6, N'1', N'5', N'0', N'', N'', N'', N'70', N'23', 900, 38, N'', N'', 3, 1, N'-1', N'2', -1, N'', N'', N'', 26, N'48', NULL, N'Beef, Water, Salt, Less than 2% of: Corn Syrup Solids, Dextrose, Flavoring, Paprika and Paprika Extractives, Hydrolyzed Corn, Soy, and Wheat Proteins, Sodium Erythorbate, Sodium Nitrite, Soy Lecithin.', N'', N'Contains: Soy and Wheat.', N'0', N'2', 0, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (379, N'', N'', N'26200187006 ', 14, 163, 7.0300, 5, N'Original', 30, 0.68, 4, 19.3, NULL, N'', N'', N'USDA Inspected', N'', N'', 0.68, 4, 19.3, N'G', 200, N'', 1, 80, N'45', 5, 8, N'2', N'10', N'0', N'', N'', N'', N'20', N'7', 470, 19, N'', N'', 2, 1, N'0', N'0', 0, N'', N'', N'', 6, N'', NULL, N'Beef, Water, Corn Syrup, Hydrolyzed Soy Protein, Less than 2% of: Salt, Flavoring, Dehydrated Garlic, Dehydrated Onions, Smoke Flavoring, Maltodextrin, Sodium Erythorbate, Sugar, Malic Acid, Sodium Nitrite, Disodium Inosinate, Disodium Guanylate.', N'', N'Contains: Soy', N'0', N'0', 0, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (380, N'', N'', N'26200187204 ', 14, 163, 4.1400, 5, N'Sweet ''n Hot', 30, 0.68, 4, 19.3, NULL, N'', N'', N'', N'', N'', 0.68, 4, 19.3, N'G', 200, N'', 1, 80, N'45', 5, 8, N'1', N'6', N'', N'', N'', N'', N'20', N'6', 400, 16, N'', N'', 4, 1, N'0', N'0', 3, N'', N'', N'', 5, N'', NULL, N'Beef, Water, Sugar, Brown Sugar, Salt, Corn Syrup, Soy Sauce (Water, Wheat, Soybeans, Salt), Hydrolyzed Soy and Corn Protein, Red Pepper, Flavorings, Maltodextrin, Smoke Flavoring, MSG, Sodium Erythorbate, Sodium Nitrite.', N'', N'Contains: Soy and Wheat.', N'0', N'0', 0, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (381, N'', N'', N'26700101564 ', 14, 112, 2.1700, 61, N'Pure', 21, 384, 1, 11.36, NULL, N'', N'', N'OU', N'', N'', 1, NULL, 14, N'G', 200, N'', 768, 120, N'120', 14, 22, N'2.5', N'12', N'0', N'', N'5', N'6', N'0', N'0', 0, 0, N'', N'', 0, 0, N'0', N'0', 0, N'', N'', N'', 0, N'', NULL, N'Peanut Oil, TBHQ and Citric Acid added to protect flavor, Dimethylpolysiloxane, an anti-foaming agent added.', N'', N'', N'0', N'0', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (382, N'', N'', N'27000390054 ', 14, 92, 12.0400, 74, N'', 3, 8, 4, 227, NULL, N'', N'', N'K', N'', N'', 2.25, 4, 62, N'G', 200, N'', 3.5, 15, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'', N'', 390, 16, N'', N'', 4, 1, N'1', N'4', 2, N'', N'', N'', -1, N'', NULL, N'Tomato Puree (Water, Tomato Paste), Water, Less than 2% of: Salt, Citric Acid, Spice, Tomato Fiber, Natural Flavor.', N'', N'', N'2', N'6', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (383, N'', N'', N'27000390146 ', 14, 92, 2.4300, 74, N'', 3, 15, 4, 425, NULL, N'', N'', N'K', N'', N'', 2.25, 4, 62, N'G', 200, N'', 7, 15, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 360, 15, N'', N'', 3, 1, N'1', N'4', 2, N'', N'', N'', -1, N'', NULL, N'Tomato Puree (Water, Tomato Paste), Water, Less than 2% of: Salt, Citric Acid, Spice, Tomato Fiber, Natural Flavor.', N'', N'', N'4', N'6', 0, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (384, N'', N'', N'28000081409 ', 46, 126, 7.8200, 7, N'Theater Pack - On the Go', 2, 3.5, 4, 99.2, NULL, N'', N'', N'OU-D', N'', N'', 1.4, 4, 41, N'G', 200, N'', 2.5, 210, N'120', 14, 21, N'5', N'25', N'0', N'', N'', N'', N'5', N'1', 15, 1, N'', N'', 22, 7, N'2', N'7', 18, N'', N'', N'', 4, N'', NULL, N'Milk Chocolate (Sugar, Chocolate, Cocoa Butter, Nonfat Milk, Lactose, Milkfat, Soy Lecithin, Vanillin - an Artificial Flavor), Peanuts, Sugar, Cocoa processed with Alkali, Tapioca Dextrin, Confectioner''s Glaze (Lac-Resin), TBHQ and Citric Acid (to preserve freshness).', N'', N'', N'0', N'0', 4, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (385, N'', N'', N'28000139902 ', 46, 125, 8.4700, 7, N'Theater Pack - On the Go', 2, 3.2, 4, 90.7, NULL, N'', N'', N'OU-D', N'', N'', 1.3, 4, 37, N'G', 200, N'', 2.5, 180, N'80', 8, 13, N'5', N'25', N'0', N'', N'', N'', N'-5', N'1', 60, 2, N'', N'', 26, 9, N'-1', N'4', 20, N'', N'', N'', 2, N'', NULL, N'Sugar, Chocolate, Crisped Rice (Rice Flour, Sugar, Salt, Barley Malt), Cocoa Butter, Nonfat Milk, Lactose, Milkfat, Tapioca Dextrin, Soy Lecithin, Confectioner''s Glaze (Lac-Resin), Vanillin - an Artificial Flavor).', N'', N'Made on equipment that also processes Peanuts, Nuts and Wheat.', N'0', N'0', 4, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (386, N'', N'', N'28189204668 ', 28, 79, 5.4800, 37, N'Diced - Hot', 3, 4, 4, 113, NULL, N'', N'', N'OU-Pareve', N'', N'', 2, NULL, 30, N'G', 200, N'', 4, 10, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 75, 3, N'', N'', 2, 1, N'-1', N'2', -1, N'', N'', N'', 0, N'', NULL, N'Diced Green Chile Peppers, Salt, Citric Acid and trace of Calcium Chloride.', N'Refrigerate Unused Portion', N'', N'0', N'30', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (387, N'', N'', N'28189413220 ', 28, 79, 2.9200, 37, N'Diced - Mild', 3, 4, 4, 113, NULL, N'', N'', N'OU-Pareve', N'', N'', 2, NULL, 30, N'G', 200, N'', 4, 10, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 60, 3, N'', N'', 2, 1, N'-1', N'2', 0, N'', N'', N'', 0, N'', NULL, N'Diced Green Chile Peppers, Salt, Citric Acid and trace of Calcium Chloride.', N'', N'', N'2', N'15', 25, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (388, N'', N'', N'28189711722 ', 28, 79, 3.5800, 37, N'Peeled - Chopped - Mild', 3, 4, 4, 113, NULL, N'', N'', N'OU-Pareve', N'', N'', 2, NULL, 30, N'G', 200, N'', 4, 10, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 40, 2, N'', N'', 2, 1, N'-1', N'2', -1, N'', N'', N'', 0, N'', NULL, N'Green Chile Peppers, Salt, Citric Acid and trace of Calcium Chloride.', N'', N'', N'0', N'30', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (389, N'', N'', N'28400001748 ', 23, 108, 10.4500, 63, N'Sour Cream & Onion', 17, 1.5, 4, 42.5, NULL, N'', N'', N'K-D', N'', N'', 1.5, 4, 42.5, N'G', 200, N'', 1, 240, N'140', 15, 23, N'1.5', N'8', N'0', N'', N'4.5', N'9', N'0', N'0', 320, 13, N'', N'', 23, 8, N'2', N'6', 2, N'', N'', N'', 3, N'', NULL, N'Potatoes, Sunflower Oil, Sour Cream & Onion Seasoning (Nonfat Milk Solids, less than 2% of the following: Maltodextrin, Onion Powder, Whey, Salt, Sour Cream [Cream, Nonfat Milk, Cultures], Dextrose, MSG, Palm Oil, Parsley, Partially Hydrogenated Soybean and Cottonseed Oil, Lactose, Whey Protein Isolate, Buttermilk Solids, Citric Acid, Natural and Artificial Flavor, Lactic Acid), and Salt.', N'', N'Contains Milk ingredients.', N'0', N'15', 2, N'0', NULL, N'8', N'', N'6', N'', N'8', N'', NULL, N'6', NULL, N'', N'', N'', 6, NULL, N'', N'2', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (390, N'', N'', N'28400003001 ', 23, 108, 8.3400, 63, N'KC Masterpiece', 17, 1.5, 4, 42.5, NULL, N'', N'', N'', N'', N'', 1.5, 4, 42.5, N'G', 200, N'', 1, 230, N'130', 15, 23, N'1.5', N'8', N'0', N'', N'4.5', N'9', N'0', N'0', 300, 13, N'', N'', 23, 8, N'2', N'6', 3, N'', N'', N'', 3, N'', NULL, N'Potatoes, Sunflower Oil, BBQ Seasoning (Sugar, Less than 2% of the following: Dextrose, Maltodextrin, Natural Flavor, Molasses, Onion Powder, MSG, Autolyzed Yeast [Torula], Salt, Spices, Paprika and Extractives of Paprika, Garlic Powder, Tomato Powder, Partially Hydrogenated Soybean and Canola Oil, Yeast, Citric Acid, and Mesquite Smoke Flavor), and Salt.', N'', N'', N'0', N'15', 0, N'2', NULL, N'20', N'', N'6', N'4', N'6', N'', NULL, N'10', NULL, N'', N'', N'', 4, NULL, N'6', N'2', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (391, N'', N'', N'28400004718 ', 23, 111, 3.6100, 63, N'Original', 17, 1, 4, 28.3, NULL, N'', N'', N'OU', N'', N'', 1, 4, 28.3, N'G', 200, N'', 1, 150, N'90', 10, 15, N'2.5', N'13', N'0', N'', N'', N'', N'0', N'0', 180, 8, N'', N'', 15, 5, N'1', N'4', 0, N'', N'', N'', 2, N'', NULL, N'Potatoes, Corn and/or Cottonseed Oil, and Salt.', N'', N'', N'0', N'10', 0, N'0', NULL, N'6', N'', N'4', N'', N'6', N'', NULL, N'4', NULL, N'', N'', N'', 4, NULL, N'', N'2', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (392, N'', N'', N'28400008969 ', 23, 28, 9.7700, 9, N'', 17, 9.5, 4, 269.3, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 1, 160, N'90', 10, 15, N'2', N'10', N'0', N'', N'', N'', N'-5', N'1', 290, 12, N'', N'', 15, 5, N'-1', N'4', 1, N'', N'', N'', 2, N'', NULL, N'Enriched Corn Meal (Corn Meal, Ferrous Sulfate, Niacin, Thiamin Mononitrate, Riboflavin, and Folic Acid), Vegetable Oil (Contains one or more of the following: Corn, Soybean or Sunflower Oil), Whey, Salt, Cheddar Cheese (Cultured Milk, Salt, Enzymes), Partially Hydrogenated Soybean Oil, Maltodextrin, Disodium Phosphate, Sour Cream (Cultured Cream, Nonfat Milk), Artificial Flavor, MSG, Lactic Acid, Artificial Colors (including Yellow 6), and Citric Acid.', N'', N'Contains: Milk ingredients.', N'0', N'0', 0, N'2', NULL, N'6', N'', N'4', N'4', N'4', N'', NULL, N'', NULL, N'', N'', N'', 2, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (393, N'', N'', N'28400009089 ', 23, 181, 12.4700, 75, N'Crispy Rounds', 17, 13.5, 4, 382.7, NULL, N'', N'', N'K', N'', N'', 1, 4, 28, N'G', 200, N'', 14, 140, N'70', 7, 11, N'1', N'6', N'0', N'', N'', N'', N'0', N'0', 120, 5, N'', N'', 18, 6, N'1', N'4', 0, N'', N'', N'', 2, N'', NULL, N'Whole White Corn, Vegetable Oil (Contains one or more of the following: Corn, Sunflower, or Soybean Oil), and Salt.', N'', N'', N'0', N'0', 4, N'2', NULL, N'4', N'', N'', N'', N'2', N'', NULL, N'4', NULL, N'', N'', N'', 6, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (394, N'', N'', N'28400009324 ', 23, 181, 9.7900, 75, N'Restaurant Style', 17, 13.5, 4, 382.7, NULL, N'', N'', N'K', N'', N'', 1, 4, 28, N'G', 200, N'', 14, 140, N'60', 7, 11, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 120, 5, N'', N'', 19, 6, N'1', N'5', 0, N'', N'', N'', 2, N'', NULL, N'Whole White Corn, Vegetable Oil (Contains one or more of the following: Corn, Sunflower, or Soybean Oil), and Salt.', N'', N'', N'0', N'0', 4, N'2', NULL, N'4', N'', N'', N'', N'2', N'', NULL, N'4', NULL, N'', N'', N'', 6, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (395, N'', N'', N'28400009577 ', 23, 181, 4.2100, 75, N'Restaurant Style', 17, 20, 4, 567, NULL, N'', N'', N'K', N'', N'', 1, 4, 28, N'G', 200, N'', 20, 140, N'60', 7, 11, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 120, 5, N'', N'', 19, 6, N'1', N'5', 0, N'', N'', N'', 2, N'', NULL, N'Whole White Corn, Vegetable Oil (Contains one or more of the following: Corn, Sunflower, or Soybean Oil), and Salt.', N'', N'', N'0', N'0', 4, N'2', NULL, N'4', N'', N'', N'', N'2', N'', NULL, N'4', NULL, N'', N'', N'', 6, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (396, N'', N'', N'28400009973 ', 23, 118, 12.6000, 63, N'Simply Sea Salt', 15, 1.375, 4, 38.9, NULL, N'', N'', N'OU', N'', N'', 1.375, 4, 38.9, N'G', 200, N'', 1, 210, N'110', 11, 17, N'3', N'14', N'0', N'', N'6', N'2', N'0', N'0', 150, 6, N'', N'', 25, 8, N'1', N'6', -1, N'', N'', N'', 2, N'', NULL, N'Potatoes, Sunflower Oil and/or Cottonseed Oil, and Sea Salt.', N'', N'This product is made on equipment that also makes products containing Peanut Oil.', N'0', N'15', 0, N'2', NULL, N'', N'', N'2', N'', N'4', N'', NULL, N'8', NULL, N'', N'', N'', 2, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (397, N'', N'', N'28400010139 ', 23, 73, 6.3800, 14, N'Chili Cheese', 17, 10, 4, 283.5, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 10, 160, N'90', 10, 15, N'1.5', N'7', N'0', N'', N'', N'', N'0', N'0', 260, 11, N'', N'', 15, 5, N'1', N'4', 1, N'', N'', N'', 2, N'', NULL, N'Whole Corn, Corn Oil, Salt, Whey, Spices, Cheddar Cheese (Cultured Milk, Salt, Enzymes), Whey Protein Concentrate, Wheat Flour, Tomato Powder, MSG, Sodium Caseinate, Partially Hydrogenated Soybean Oil, Romano Cheese from Cow''s Milk (Cultured Pasteurized Part Skim Milk, Salt, Enzymes), Dextrose, Onion Powder, Sugar, Natural Flavor, Butter (Cream, Salt), Disodium Phosphate, Buttermilk Solids, Citric Acid, Garlic Powder, Artificial Colors, Lactic Acid, Disodium Inosinate, and Disodium Guanylate. ', N'', N'Contains Milk and Wheat Ingredients.', N'0', N'0', 4, N'0', NULL, N'6', N'', N'', N'', N'', N'', NULL, N'2', NULL, N'', N'', N'', 4, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (398, N'', N'', N'28400010146 ', 23, 73, 14.0300, 14, N'Original', 17, 10, 4, 283.5, NULL, N'', N'', N'K', N'', N'', 1, 4, 28, N'G', 200, N'', 10, 160, N'90', 10, 16, N'1.5', N'7', N'0', N'', N'', N'', N'0', N'0', 170, 7, N'', N'', 15, 5, N'1', N'4', -1, N'', N'', N'', 2, N'', NULL, N'Whole Corn, Corn Oil, and Salt.', N'', N'', N'0', N'0', 2, N'0', NULL, N'6', N'', N'', N'', N'', N'', NULL, N'2', NULL, N'', N'', N'', 4, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (399, N'', N'', N'28400010368 ', 23, 74, 12.5700, 14, N'', 17, 15, 4, 425.2, NULL, N'', N'', N'K', N'', N'', 1, 4, 28, N'G', 200, N'', 15, 160, N'90', 10, 15, N'1.5', N'6', N'0', N'', N'', N'', N'0', N'0', 110, 5, N'', N'', 16, 5, N'1', N'4', 0, N'', N'', N'', 2, N'', NULL, N'Whole Corn, Corn Oil, and Salt.', N'', N'', N'0', N'0', 4, N'0', NULL, N'6', N'', N'', N'', N'', N'', NULL, N'2', NULL, N'', N'', N'', 4, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (400, N'', N'', N'28400010436 ', 23, 118, 9.9600, 63, N'Mesquite BBQ', 15, 1.375, 4, 38.9, NULL, N'', N'', N'OU-D', N'', N'French Translations', 1.375, 4, 38.9, N'G', 200, N'', 1, 200, N'100', 11, 17, N'3.5', N'17', N'0', N'', N'', N'', N'0', N'0', 290, 12, N'', N'', 22, 7, N'2', N'7', 2, N'', N'', N'', 3, N'', NULL, N'Potatoes, Vegetable Oil (Contains one or more of the following: Corn, Cottonseed, or Sunflower Oil), Sugar, Dextrose, Salt, Paprika, Natural Flavor, Tomato Powder, Onion Powder, Garlic Powder, Torula Yeast, MSG, Spice, Citric Acid, and Caramel Powder.', N'', N'This product is made on equipment that also makes products containing Peanut Oil.', N'2', N'15', 2, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (401, N'', N'', N'28400010818 ', 23, 180, 14.0400, 67, N'Vegetarian Blend', 3, 30, 4, 850, NULL, N'', N'', N'', N'', N'', 4, 4, 130, N'G', 200, N'', 7, 120, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 610, 25, N'', N'', 20, 7, N'6', N'24', 1, N'', N'', N'', 7, N'', NULL, N'Cooked Pinto Beans, Water, Contains less than 2% of Salt, Soybean Oil, Dried Pink Beans, Natural Flavor, Soy Lecithin.', N'Refrigerate After Opening', N'', N'0', N'0', 2, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (402, N'', N'', N'28400012546 ', 23, 118, 6.2100, 63, N'Sea Salt & Malt Vinegar', 15, 1.375, 4, 38.9, NULL, N'', N'', N'OU-D', N'', N'French Translations', 1.375, 4, 38.9, N'G', 200, N'', 1, 190, N'90', 10, 15, N'3', N'14', N'0', N'', N'', N'', N'0', N'0', 360, 15, N'', N'', 24, 8, N'1', N'6', 1, N'', N'', N'', 2, N'', NULL, N'Potatoes, Vegetable Oil (Contains one or more of the following: Corn, Cottonseed, or Sunflower Oil), Lactose, Sea Salt, Wheat Maltodextrin, Sodium Acetate, Acetic Acid, Malt Vinegar Solids, Malic Acid, and Citric Acid.', N'', N'Contains Milk and Wheat Ingredients. This product is made on equipment that also makes products containing Peanut Oil.', N'0', N'10', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (403, N'', N'', N'28400012553 ', 23, 118, 13.6500, 63, N'Jalapeno', 15, 1.375, 4, 38.9, NULL, N'', N'', N'OU-D', N'', N'French Translations', 1.375, 4, 38.9, N'G', 200, N'', 1, 190, N'100', 11, 17, N'3', N'15', N'0', N'', N'', N'', N'0', N'0', 240, 10, N'', N'', 22, 7, N'1', N'6', 0, N'', N'', N'', 2, N'', NULL, N'Potatoes, Vegetable Oil (Contains one or more of the following: Corn, Cottonseed, or Sunflower Oil), Maltodextrin, Salt, Dextrose, Onion Powder, Torula Yeast, Whey, Spice, MSG, Garlic Powder, Natural and Artificial Flavors, Modified Food Starch, Jalapeno Peppers, Partially Hydrogenated Soybean Oil, and Extractives of Paprika.', N'', N'Contains a Milk ingredient. This product is made on equipment that also makes products containing Peanut Oil.', N'0', N'10', 0, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (404, N'', N'', N'28400021524 ', 23, 57, 14.0800, 4, N'Nacho Cheese', 17, 1.375, 4, 38.9, NULL, N'', N'', N'Smart Choices', N'', N'', 1.375, 4, 38.9, N'G', 200, N'', 1, 170, N'40', 5, 8, N'1', N'5', N'0', N'', N'3', N'1', N'0', N'0', 310, 13, N'', N'', 29, 10, N'2', N'9', 2, N'', N'', N'', 3, N'', NULL, N'Whole Corn, Corn Oil, Salt, Cheddar Cheese (Milk, Cheese Cultures, Salt, Enzymes), Buttermilk Solids, Whey Protein Concentrate, Whey, Tomato Powder, MSG, Romano Cheese (Part-Skim Cow''s Milk, Cheese Cultures, Salt, Enzymes), Onion Powder, Wheat Flour, Natural and Artificial Flavor, Partially Hydrogenated Soybean and Cottonseed Oil, Artificial Color (including Yellow 6 Lake, Yellow 5 Lake, Yellow 6, Red 40 Lake), Sugar, Garlic Powder, Disodium Phosphate, Dextrose, Parmesan Cheese (Part-Skim Milk, Cheese Cultures, Salt, Enzymes), Spice, Citric Acid, Lactic Acid, Disodium Inosinate, and Disodium Guanylate.', N'', N'Contains Milk and Wheat Ingredients.', N'4', N'0', 6, N'4', NULL, N'4', N'', N'6', N'', N'2', N'', NULL, N'8', NULL, N'', N'', N'', 10, NULL, N'', N'2', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (405, N'', N'', N'28400024235 ', 23, 109, 14.7000, 63, N'Jalapeno - 99 Cents', 17, 2.13, 4, 60.2, NULL, N'', N'', N'OU-D', N'', N'', 1, 4, 28, N'G', 200, N'', 2, 140, N'70', 8, 13, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 170, 7, N'', N'', 16, 5, N'1', N'4', 0, N'', N'', N'', 2, N'', NULL, N'Potatoes, Sunflower Oil, Maltodextrin, Salt, Dextrose, Onion Powder, Torula Yeast, Whey, Spice, Monosodium Glutamate, Garlic Powder, Natural and Artificial Flavors, Modified Corn Starch, Jalapeno Peppers, Partially Hydrogenated Soybean Oil, Paprika Extractives.', N'', N'Contains a Milk Ingredient. This product is made on equipment that also makes products containing peanut oil.', N'0', N'10', 0, N'4', NULL, N'10', N'', N'2', N'', N'6', N'', NULL, N'6', NULL, N'', N'', N'', 4, NULL, N'4', N'2', N'', N'', N'4', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (406, N'', N'', N'28400028547 ', 23, 158, 2.0400, 63, N'Reduced Fat', 17, 12, 4, 340.2, NULL, N'', N'', N'OU, Smart Choices', N'', N'', 1, 4, 28, N'G', 200, N'', 12, 140, N'60', 7, 10, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 180, 7, N'310', N'9', 18, 6, N'1', N'6', 0, N'', N'', N'', 2, N'', NULL, N'Potatoes, Vegetable Oil (Contains one or more of the following: Corn, Cottonseed, or Sunflower Oil), and Salt.', N'', N'', N'0', N'10', 0, N'2', NULL, N'4', N'', N'2', N'2', N'6', N'', NULL, N'4', NULL, N'', N'', N'', 4, NULL, N'', N'2', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (407, N'', N'', N'28400028691 ', 23, 59, 8.0400, 75, N'99 Cents', 17, 3, 4, 85, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 3, 140, N'60', 7, 11, N'1', N'6', N'0', N'', N'', N'', N'0', N'0', 170, 7, N'', N'', 18, 6, N'1', N'4', -1, N'', N'', N'', 2, N'', NULL, N'Corn, Vegetable Oil (Contains one or more of the following: Corn, Soybean, or Sunflower Oil), Buttermilk Solids, Salt, Tomato Powder, Partially Hydrogenated Soybean Oil, Corn Syrup Solids, Corn Starch, Whey, Onion Powder, Garlic Powder, MSG, Cheddar Cheese (Cultured Milk, Salt, Enzymes), Nonfat Milk Solids, Sugar, Dextrose, Malic Acid, Sodium Caseinate, Sodium Acetate, Artificial Color (including Red 40, Blue 1, Yellow 5), Spice, Natural and Artificial Flavor, Sodium Citrate, Disodium Inosinate, and Disodium Guanylate.', N'', N'Contains Milk ingredients.', N'0', N'0', 4, N'2', NULL, N'4', N'', N'', N'2', N'2', N'', NULL, N'4', NULL, N'', N'', N'', 6, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (408, N'', N'', N'28400028714 ', 23, 110, 3.0300, 63, N'Sour Cream & Onion', 17, 5.75, 4, 163, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 6, 150, N'90', 10, 15, N'2.5', N'13', N'0', N'', N'', N'', N'0', N'0', 190, 8, N'', N'', 15, 5, N'1', N'4', 2, N'', N'', N'', 1, N'', NULL, N'Dehydrated Potatoes, Corn Oil and/or Cottonseed Oil, Sugar, Food Starch (Unmodified and Pregelatinized), Salt, Dextrose, Lactose, Mono- and Diglycerides, Partially Hydrogenated Soybean and Cottonseed Oil, Onion Powder, Corn Syrup Solids, MSG, Corn Starch, Sour Cream (Cultured Cream, Nonfat Milk), Nonfat Milk Solids, Sodium Caseinate, Maltodextrin, Soy Lecithin, Malic Acid, Natural and Artificial Flavor, Citric Acid, Cheddar Cheese (Cultured Milk, Salt, Enzymes), Cream Solids, Buttermilk Solids, Whey, Sodium Citrate, Artificial Color (Including Blue 1, Red 40, Yellow 5 Lake), Carrageenan, Disodium Inosinate, Disodium Guanylate, and Lactic Acid.', N'', N'Contains Milk and Soy ingredients.', N'0', N'2', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (409, N'', N'', N'28400028752 ', 23, 60, 2.9800, 75, N'99 Cents', 17, 3, 4, 85, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 3, 140, N'70', 7, 11, N'1', N'6', N'0', N'', N'', N'', N'0', N'0', 200, 8, N'', N'', 17, 6, N'1', N'5', 2, N'', N'', N'', 2, N'', NULL, N'Corn, Vegetable Oil (Contains one or more of the following: Corn, Soybean, or Sunflower Oil), Cheddar Cheese (Cultured Milk, Salt, Enzymes), Salt, Buttermilk Solids, Wheat Flour, Whey Protein Concentrate, Romano Cheese from Cow''s Milk (Cultured Milk, Salt, Enzymes), Tomato Powder, MSG, Onion Powder, Partially Hydrogenated Soybean Oil, Whey, Garlic Powder, Dextrose, Sugar, Disodium Phosphate, Lactic Acid, Natural Flavor, Spice, Citric Acid, Parmesan Cheese (Cultured Milk, Salt, Enzymes), Artificial Colors (including Yellow 6, Red 40), Disodium Inosinate, and Disodium Guanylate.', N'', N'Contains Milk and Wheat Ingredients.', N'0', N'0', 4, N'0', NULL, N'4', N'', N'', N'', N'2', N'', NULL, N'4', NULL, N'', N'', N'', 6, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (410, N'', N'', N'28400029926 ', 23, 27, 3.1000, 9, N'Baked / Crunchy', 17, 0.875, 4, 24.8, NULL, N'', N'', N'Smart Choices', N'', N'', 0.875, 4, 24.8, N'G', 200, N'', 1, 120, N'40', 4.5, 7, N'1', N'4', N'0', N'', N'', N'', N'0', N'0', 210, 9, N'', N'', 17, 6, N'0', N'0', -1, N'', N'', N'', 2, N'', NULL, N'Enriched Corn Meal (Corn Meal, Ferrous Sulfate, Niacin, Thiamin Mononitrate, Riboflavin, and Folic Acid), Vegetable Oil (Contains one or more of the following: Corn, Soybean or Sunflower Oil), Whey, Cheddar Cheese (Cultured Milk, Salt, Enzymes), Salt, Partially Hydrogenated Soybean Oil, Maltodextrin, Sugar, Disodium Phosphate, Sour Cream (Cultured Cream, Nonfat Milk), Artificial Flavor, Beta-Carotene, MSG, Lactic Acid, Artificial Colors (including Yellow 6), and Citric Acid.', N'', N'Contains Milk ingredients.', N'8', N'0', 0, N'4', NULL, N'4', N'', N'10', N'6', N'6', N'', NULL, N'', NULL, N'', N'', N'', 4, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (411, N'', N'', N'28400033374 ', 23, 57, 12.7300, 26, N'Cool Ranch', 17, 13, 4, 368.5, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 13, 140, N'60', 7, 11, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 170, 7, N'', N'', 18, 6, N'1', N'4', -1, N'', N'', N'', 2, N'', NULL, N'Whole Corn, Vegetable Oil (Contains one or more of the following: Corn, Soybean, or Sunflower Oil), Buttermilk Solids, Salt, Tomato Powder, Partially Hydrogenated Soybean Oil, Corn Syrup Solids, Corn Starch, Whey, Onion Powder, Garlic Powder, MSG, Cheddar Cheese (Cultured Milk, Salt, Enzymes), Nonfat Milk Solids, Sugar, Dextrose, Malic Acid, Sodium Caseinate, Sodium Acetate, Artificial Color (including Red 40, Blue 1, Yellow 5), Spice, Natural and Artificial Flavor, Sodium Citrate, Disodium Inosinate, and Disodium Guanylate.', N'', N'Contains Milk ingredients.', N'0', N'0', 2, N'2', NULL, N'4', N'', N'2', N'2', N'', N'', NULL, N'4', NULL, N'', N'', N'', 6, NULL, N'4', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (412, N'', N'', N'28400033381 ', 23, 57, 2.6600, 26, N'Nacho Cheese', 17, 13, 4, 368.5, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 13, 150, N'70', 8, 12, N'1.5', N'7', N'0', N'', N'', N'', N'0', N'0', 180, 7, N'', N'', 17, 6, N'1', N'6', 1, N'', N'', N'', 2, N'', NULL, N'Whole Corn, Vegetable Oil (Contains one or more of the following: Corn, Soybean, and/or Sunflower Oil), Salt, Cheddar Cheese (Milk, Cheese Cultures, Salt, Enzymes), Maltodextrin, Wheat Flour, Whey, MSG, Buttermilk Solids, Romano Cheese from Cow''s Milk (Part-Skim Cow''s Milk, Cheese Cultures, Salt, Enzymes), Whey Protein Concentrate, Onion Powder, Partially Hydrogenated Soybean and Cottonseed Oil, Corn Flour, Disodium Phosphate, Lactose, Natural and Artificial Flavor, Dextrose, Tomato Powder, Spices, Lactic Acid, Artificial Color (including Yellow 6, Yellow 5, Red 40), Citric Acid, Sugar, Garlic Powder, Red and Green Bell Pepper Powder, Sodium Caseinate, Disodium Inosinate, Disodium Guanylate, Nonfat Milk Solids, Whey Protein Isolate, and Corn Syrup Solids.', N'', N'Contains Milk and Wheat Ingredients.', N'0', N'0', 2, N'0', NULL, N'', N'', N'4', N'', N'', N'', NULL, N'2', NULL, N'', N'', N'', 6, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (413, N'', N'', N'28400033398 ', 23, 57, 9.5600, 26, N'Salsa Verde', 17, 13, 4, 368.5, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 13, 140, N'70', 7, 11, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 210, 9, N'', N'', 19, 6, N'1', N'4', 1, N'', N'', N'', 2, N'', NULL, N'Whole Corn, Vegetable Oil (Contains one or more of the following: Corn, Soybean, or Sunflower Oil), Maltodextrin, Salt, MSG, Dextrose, Jalapeno Pepper Powder, Tomato Powder, Paprika, Onion, Citric Acid, Modified Corn Starch, Natural and Artificial Flavors, Spices, Garlic, Spice Extractives, Vinegar Solids, Corn Syrup Solids, Artificial Color (including Yellow 6 Lake, Red 40 Lake, Blue 1 Lake), Parsley, Dry Lemon Juice, Natural Cilantro Flavor, Natural Chicken Flavor, and Yeast Extract.', N'', N'', N'4', N'0', 2, N'2', NULL, N'4', N'', N'', N'', N'', N'', NULL, N'2', NULL, N'', N'', N'', 4, NULL, N'4', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (414, N'', N'', N'28400033404 ', 23, 57, 8.2600, 26, N'Spicy Nacho', 17, 13, 4, 368.5, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 13, 140, N'60', 7, 11, N'1', N'6', N'0', N'', N'', N'', N'0', N'0', 210, 9, N'', N'', 18, 6, N'1', N'4', -1, N'', N'', N'', 2, N'', NULL, N'Whole Corn, Vegetable Oil (Contains one or more of the following: Corn, Soybean, or Sunflower Oil), Maltodextrin, Salt, Cheddar Cheese (Cultured Milk, Salt, Enzymes), Whey, MSG, Buttermilk Solids, Romano Cheese from Cow''s Milk (Cultured Pasteurized Part Skim Milk, Salt, Enzymes), Corn Starch, Whey Protein Concentrate, Partially Hydrogenated Soybean and Cottonseed Oil, Lactose, Disodium Phosphate, Garlic Powder, Dextrose, Natural and Artificial Flavor, Onion Powder, Spices, Artificial Color (including Yellow 6 Lake, Red 40 Lake, Yellow 6, Yellow 5, Red 40, Blue 1), Sugar, Citric Acid, Sodium Caseinate, Lactic Acid, Jalapeno Pepper Powder, Disodium Inosinate, Disodium Guanylate, and Nonfat Milk Solids.', N'', N'Contains Milk ingredients.', N'2', N'0', 4, N'2', NULL, N'4', N'', N'2', N'', N'2', N'', NULL, N'4', NULL, N'', N'', N'', 6, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (415, N'', N'', N'28400033480 ', 23, 57, 7.9400, 75, N'Guacamole', 17, 13, 4, 368.5, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 13, 150, N'80', 8, 13, N'1.5', N'7', N'0', N'', N'', N'', N'0', N'0', 230, 9, N'', N'', 16, 5, N'1', N'5', 0, N'', N'', N'', 4, N'', NULL, N'Corn, Vegetable Oil (Contains one or more of the following: Corn, Soybean, or Sunflower Oil), Salt, Maltodextrin, MSG, Cheddar Cheese (Cultured Milk, Salt, Enzymes), Onion Powder, Whey, Buttermilk Solids, Garlic Powder, Partially Hydrogenated Soybean Oil, Tomato Powder, Natural and Artificial Flavors, Sour Cream (Cultured Cream, Nonfat Milk), Citric Acid, Corn Syrup Solids, Spice, Artificial Avocado Flavor, Disodium Phosphate, Sodium Caseinate, Lime Juice Concentrate, and Artificial Colors (including Yellow 5 Lake, Blue 1 Lake, Yellow 6 Lake, Yellow 5, Blue 1, Red 40).', N'', N'Contains Milk ingredients.', N'2', N'0', 0, N'2', NULL, N'4', N'', N'', N'', N'2', N'', NULL, N'4', NULL, N'', N'', N'', 6, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (416, N'', N'', N'28400037396 ', 22, 159, 3.2800, 5, N'2/$1.00', 22, 9.3, 4, 263.6, NULL, N'', N'', N'USDA Inspected', N'', N'', 0.31, 4, 8.7, N'G', 200, N'', 30, 35, N'20', 2, 3, N'1', N'4', N'0', N'', N'', N'', N'10', N'3', 170, 7, N'', N'', 0, 0, N'0', N'0', 0, N'', N'', N'', 4, N'', NULL, N'Beef, Hydrolyzed Beef Stock, Water, Corn Syrup, Salt, Flavorings, Hydrolyzed Corn Protein, Natural Smoke Flavoring, Sodium Erythorbate, Sodium Nitrite.', N'', N'', N'0', N'0', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (417, N'', N'', N'28400037648 ', 22, 160, 0.7100, 75, N'Yellow Corn Blend', 17, 16, 4, 453.6, NULL, N'', N'', N'K', N'', N'Spanish Translations', 1, 4, 28, N'G', 200, N'9', 16, 130, N'50', 6, 8, N'1', N'5', N'0', N'', N'', N'', N'0', N'0', 110, 5, N'', N'', 19, 6, N'1', N'5', 0, N'', N'', N'', 2, N'', NULL, N'Whole Corn, Vegetable Oil (Contains one or more of the following: Corn, Sunflower, or Soybean Oil), and Salt.', N'', N'', N'0', N'0', 2, N'2', NULL, N'4', N'', N'', N'', N'', N'', NULL, N'4', NULL, N'', N'', N'', 6, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (418, N'', N'', N'70470006536 ', 84, 187, 12.5800, 58, N'Very Cherry', 20, 6, 4, 170, NULL, N'', N'', N'K-D', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 100, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'-5', N'1', 85, 4, N'250', N'7', 19, 6, N'', N'', 14, N'', N'', N'', 5, N'10', NULL, N'Cultured Pasteurized Grade A Non Fat Milk, High Fructose Corn Syrup, Cherries, Modified Corn Starch, Whey Protein Concentrate, Kosher Gelatin, Citric Acid, Malic Acid, Tricalcium Phosphate, Aspartame, Potassium Sorbate added to maintain freshness, Natural Flavor, Red #40, Blue #1, Vitamin A Acetate, Vitamin D3.', N'Keep Refrigerated. Phenylketonurics: Contains Phenylalanine', N'', N'15', N'', 20, N'', 20, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (419, N'', N'', N'70470006611 ', 84, 187, 2.1800, 58, N'Boston Cream Pie', 20, 6, 4, 170, NULL, N'', N'', N'K-D', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 110, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'-5', N'1', 90, 4, N'270', N'8', 20, 7, N'', N'', 15, N'', N'', N'', 6, N'12', NULL, N'Cultured Pasteurized Grade A Non Fat Milk, High Fructose Corn Syrup, Modified Corn Starch, Whey Protein Concentrate, Kosher Gelatin, Natural and Artificial Flavor, Aspartame, Potassium Sorbate added to maintain freshness, Vitamin A Acetate, Vitamin D3.', N'Keep Refrigerated. Phenylketonurics: Contains Phenylalanine', N'', N'15', N'', 20, N'', 20, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (420, N'', N'', N'70470006680 ', 84, 187, 13.5200, 58, N'White Chocolate Strawberry', 20, 6, 4, 170, NULL, N'', N'', N'K-D', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 100, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'-5', N'0', 85, 4, N'250', N'7', 19, 6, N'', N'', 14, N'', N'', N'', 5, N'', NULL, N'Cultured Pasteurized Grade A Non Fat Milk, High Fructose Corn Syrup, Strawberries, Modified Corn Starch, Whey Protein Concentrate, Kosher Gelatin, Citric Acid, Tricalcium Phosphate, Aspartame, Potassium Sorbate added to maintain freshness, Natural Flavor, Red 40, Vitamin A Acetate, Vitamin D3.', N'Keep Refrigerated. Phenylketonurics: Contains Phenylalanine', N'', N'15', N'', 20, N'', 20, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (421, N'', N'', N'70470180861 ', 84, 187, 5.5300, 58, N'Peaches ''n Cream', 20, 6, 4, 170, NULL, N'', N'', N'K-D', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 100, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'-5', N'1', 90, 4, N'260', N'7', 20, 7, N'', N'', 14, N'', N'', N'', 5, N'10', NULL, N'Cultured Pasteurized Grade A Non Fat Milk, High Fructose Corn Syrup, Modified Corn Starch, Peach Puree, Whey Protein Concentrate, Kosher Gelatin, Corn Starch, Tricalcium Phosphate, Natural Flavor, Potassium Sorbate added to maintain freshness, Sucralose, Acesulfame Potassium, Annatto Extract Color, Vitamin A Acetate, Vitamin D3.', N'Keep Refrigerated', N'', N'15', N'', 20, N'', 20, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', 15, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (422, N'', N'', N'70640502141 ', 82, 185, 10.3800, 58, N'Amaretto Cheesecake', 20, 6, 4, 170, NULL, N'', N'', N'K', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 100, N'0', 0.5, 1, N'0', N'0', N'0', N'', N'', N'', N'5', N'2', 110, 5, N'250', N'7', 17, 6, N'3', N'10', 12, N'', N'', N'', 6, N'12', NULL, N'Milk Fat and Nonfat Milk, Flavor Base (Crystalline Fructose, Sour Cream and Almond Flavor with other Natural Flavors, Inulin Fiber, Food Starch-Modified, Sucralose, Citric Acid, Potassium Sorbate as Preservative, Annatto for color), Inulin, Whey Protein Concentrate, Food Starch-Modified, Kosher Gelatin, Sodium Citrate, Tricalcium Phosphate, Cultures, Vitamin A Palmitate, Vitamin D3.', N'Keep Refrigerated. Contains L. Acidophilus and Bulgaricus, Bifidobacterium SP and S. Thermophilus.', N'', N'10', N'0', 30, N'0', 30, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (423, N'', N'', N'70640502158 ', 82, 185, 10.0100, 58, N'Berries ''n Cream', 20, 6, 4, 170, NULL, N'', N'', N'K', N'', N'', 6, 4, 170, N'G', 200, N'', 1, 100, N'0', 0.5, 1, N'0', N'0', N'0', N'', N'', N'', N'5', N'2', 110, 5, N'250', N'7', 17, 6, N'3', N'10', 12, N'', N'', N'', 6, N'12', NULL, N'Milk Fat and Nonfat Milk, Flavor Base (Crystalline Fructose, Blackberry Puree, Raspberry Puree, Black Raspberry Puree, Boysenberry Puree, Blackberry, Raspberry and Food Starch-Modified, Inulin Fiber, Sucralose, Citric Acid, Potassium Sorbate as Preservative, Red 40, Blue 1), Inulin, Whey Protein Concentrate, Food Starch-Modified, Kosher Gelatin, Sodium Citrate, Tricalcium Phosphate, Cultures, Vitamin A Palmitate, Vitamin D3.', N'Keep Refrigerated. Contains L. Acidophilus and Bulgaricus, Bifidobacterium SP and S. Thermophilus.', N'', N'10', N'0', 30, N'0', 30, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (424, N'', N'', N'70662010006 ', 48, 128, 1.4900, 64, N'Oriental Flavor', 17, 3, 4, 85, NULL, N'', N'', N'', N'', N'', 1.5, 4, 42, N'G', 200, N'', 2, 190, N'60', 7, 11, N'3.5', N'18', N'0', N'', N'', N'', N'0', N'0', 800, 33, N'', N'', 26, 9, N'1', N'3', -1, N'', N'', N'', 5, N'', NULL, N'Ramen Noodles: Enriched Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola Oil, Cottonseed Oil, Palm Oil), Contains less than 2% of Salt, Sodium Tripolyphosphate, Potassium Carbonate, Sodium Carbonate, Sodium Alginate, Tocopherols, T-BHQ. Seasoning Mix: Salt, Soy Sauce Powder (Wheat, Soybeans, Maltodextrin, Salt), MSG, Spices, Hydrolyzed Soy, Corn and Wheat Protein, Garlic Powder, Caramel Color, Onion Powder, Rice Oil, Citric Acid, Disodium Succinate, Dehydrated Leek, Calcium Silicate (anticaking agent), Disodium Guanylate, Disodium Inosinate.', N'', N'Manufactured in a facility that also processes Milk, Egg, Peanuts, Fish and Shrimp products.', N'0', N'0', 0, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (425, N'', N'', N'70662010037 ', 48, 128, 6.4000, 64, N'Chicken Flavor', 17, 3, 4, 85, NULL, N'', N'', N'', N'', N'', 1.5, 4, 42, N'G', 200, N'', 2, 190, N'60', 7, 11, N'3.5', N'18', N'0', N'', N'', N'', N'0', N'0', 910, 38, N'', N'', 26, 9, N'2', N'8', -1, N'', N'', N'', 5, N'', NULL, N'Ramen Noodles: Enriched Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola Oil, Cottonseed Oil, Palm Oil) preserved by Tocopherols and/or TBHQ and/or Ascorbyl Palmitate, Contains less than 2% of Salt, Sodium Tripolyphosphate, Potassium Carbonate, Sodium Carbonate, Sodium Alginate. Seasoning Mix: Salt, MSG, Hydrolyzed Soy, Corn and Wheat Protein, Chicken Powder, Soy Sauce Powder (Wheat, Soybeans, Maltodextrin, Salt), Onion Powder, Garlic Powder, Spices, Chicken Fat, Calcium Silicate (anticaking agent), Celery Powder, Sugar, Dehydrated Leek, Turmeric Color, Autolyzed Yeast Extract, Citric Acid, Disodium Guanylate, Disodium Inosinate, Natural Flavors, Artificial Flavors.', N'', N'Manufactured in a facility that also processes Milk, Egg, Peanuts, Tree Nut, Fish and Shrimp products.', N'0', N'0', 0, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (426, N'', N'', N'70662014011 ', 48, 32, 10.3500, 64, N'Savory Herb Chicken Flavor', 17, 2.82, 4, 80, NULL, N'', N'', N'', N'', N'', 1.41, 4, 40, N'G', 200, N'', 2, 140, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 390, 16, N'', N'', 31, 10, N'1', N'4', 1, N'', N'', N'', 4, N'', NULL, N'Wheat Flour, Modified Food Starch, Salt, Contains less than 2% of Potassium Chloride, MSG, Sugar, Soy Lecithin, Garlic Powder, Onion Powder, Autolyzed Torula Yeast Extract, Spice and Color, Potassium Carbonate, Dextrose, Powdered Chicken, Sodium Hexametaphosphate, Sodium Tripolyphosphate, Soy Sauce (Wheat, Soybean, Salt), Maltodextrin, Hydrolyzed Soy Protein, Propylene Glycol Alginate, Disodium Guanylate, Disodium Inosinate, Autolyzed Baker''s Yeast Extract, Celery Powder, Beta-Carotene Color, Basil Flake, Parsley Flake, Citric Acid, Chicken Fat, Tocopherol (preservative), Natural and Artificial Flavor, Partially Hydrogenated Soybean Oil, Lactose, Egg White Powder.', N'', N'Contains Wheat, Soybean, Egg, and Milk. Manufactured in a facility that also processes Peanut, Tree Nuts, Crustacean Shellfish, and Fish products.', N'6', N'0', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (427, N'', N'', N'70662014028 ', 48, 32, 6.1900, 64, N'Slow Stewed Beef Flavor', 17, 2.82, 4, 80, NULL, N'', N'', N'', N'', N'', 1.41, 4, 40, N'G', 200, N'', 2, 140, N'10', 1, 2, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 400, 17, N'', N'', 28, 9, N'2', N'8', -1, N'', N'', N'', 4, N'', NULL, N'Ramen Noodles: Wheat Flour, Modified Tapioca Starch, Contains less than 2% of Salt, Wheat Gluten, Soya Lecithin, Sodium Hexametaphosphate, Sodium Tripolyphosphate, Potassium Carbonate, Propylene Glycol Alginate (formulation aid), Tocopherols, Dextrin, Beta-Carotene Color. Seasoning Mix: MSG, Soy Sauce (Wheat, Soybean, Maltodextrin, Salt), Salt, Onion Powder, Garlic Powder, Sugars, Tomato Powder, Potassium Chloride, Hydrolyzed Soy, Corn and Wheat Protein, Autolyzed Yeast Extract, Maltodextrin, Caramel Color, Dextrose, Spices, Vegetable Oil (Contains one or more of the following: Canola Oil, Rice Oil, Soy Oil, Sunflower Oil) preserved by Tocopherols and/or TBHQ and/or Ascorbyl Palmitate, Natural and Artificial Flavors, Disodium Guanylate, Disodium Inosinate.', N'', N'Manufactured in a facility that also processes Milk, Egg, Peanuts, Tree Nut, Fish and Shrimp products.', N'0', N'0', 0, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (428, N'', N'', N'70662030011 ', 48, 40, 7.0800, 64, N'Beef Flavor', 16, 2.25, 4, 64, NULL, N'', N'', N'', N'', N'', 2.25, 4, 64, N'G', 200, N'', 1, 300, N'120', 13, 20, N'7', N'35', N'0', N'', N'', N'', N'0', N'0', 1110, 46, N'', N'', 38, 13, N'2', N'7', 2, N'', N'', N'', 7, N'', NULL, N'Enriched Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola Oil, Cottonseed Oil, Palm Oil. Rice Oil) preserved by Tocopherols and/or TBHQ and/or Ascorbyl Palmitate, Dehydrated Vegetables (Corn, Carrot, Green Pea), Salt, Textured Soy Protein, Hydrolyzed Soy, Corn and Wheat Protein, Onion Powder, MSG, Caramel Color, Garlic Powder, Autolyzed Yeast Extract, Potassium Carbonate, Sodium Carbonate, Sodium Tripolyphosphate, Disodium Guanylate, Disodium Inosinate, Sodium Alginate, Natural Flavors, Soy Sauce Powder (Wheat, Soybeans, Maltodextrin, Salt), Beef Powder, Hydrolyzed Wheat Gluten, Sugar.', N'', N'Manufactured in a facility that also processes Milk, Egg, Peanuts, Tree Nut, Fish and Shrimp products.', N'6', N'0', 0, N'25', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (429, N'', N'', N'70662087428 ', 48, 127, 7.2200, 65, N'Pasta Alfredo', 23, 3.63, 4, 103, NULL, N'', N'', N'', N'', N'', 1.81, 4, 51.5, N'G', 200, N'', 2, 250, N'100', 12, 18, N'4.5', N'22', N'0', N'', N'', N'', N'15', N'5', 690, 29, N'', N'', 30, 10, N'1', N'4', 1, N'', N'', N'', 6, N'', NULL, N'Enriched Flour (Wheat Flour, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, Folic Acid), Vegetable Oil (Contains one or more of the following: Canola Oil, Rice Oil, Soy Oil, Cottonseed Oil) preserved by Tocopherols and/or TBHQ and/or Ascorbyl Palmitate, Dehydrated Onion, Salt, Parmesan Cheese (Pasteurized Milk, Salt, Cheese Culture, Enzymes), Egg Powder, MSG, Dehydrated Cheese (Cultured Pasteurized Milk, Salt, Enzymes), Non-Dairy Creamer (Corn Syrup Solids, Partially Hydrogenated Soy Oil, Sodium Caseinate [a Milk derivative], Dipotassium Phosphate, Mono- and Diglycerides), Sugars, Textured Soy Flour, Cooked Ham (cured with Salt, Sugar, Sodium Phosphate, Smoke Flavoring, Sodium Erythorbate, and Sodium Nitrite), Onion Powder, Dextrose, Natural and Artificial Flavors, Sodium Triphosphate, Autolyzed Yeast Extract, Rendered Bacon Fat, Garlic Powder, Sodium Tripolyphosphate, Spices, Sodium Alginate, Sugar Ester (Dissolving Agent), Xanthan Gum, Disodium Guanylate, Disodium Inosinate, Beta-Carotene Color, Citric Acid, Hydrolyzed Corn, Soy and Wheat Protein.', N'', N'Manufactured in a facility that also processes Peanuts, Tree Nuts, Fish and Shrimp products.', N'4', N'0', 4, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (430, N'', N'', N'71193490213 ', 17, 61, 5.2700, 5, N'Original', 17, 1, 4, 28, NULL, N'', N'', N'USDA Inspected', N'', N'', 1, 4, 28, N'G', 200, N'', 1, 60, N'10', 1, 2, N'0', N'0', N'', N'', N'', N'', N'25', N'8', 410, 17, N'', N'', 3, 1, N'0', N'0', 3, N'', N'', N'', 10, N'', NULL, N'Beef, Water, Brown Sugar, Salt, Pepper, Seasoning [Torula Yeast, Maltodextrin, Grill Flavor (From Vegetable Oil), Modified Food Starch, Corn Syrup Solids, and Tricalcium Phosphate], Sodium Erythorbate, Sodium Nitrite.', N'', N'', N'0', N'0', 0, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (431, N'', N'', N'71193491319 ', 17, 61, 7.6900, 5, N'Pecan Smoked', 17, 1, 4, 28, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 1, 45, N'0', 0.5, 1, N'0', N'0', N'', N'', N'', N'', N'10', N'4', 300, 12, N'', N'', -1, 0, N'0', N'0', 0, N'', N'', N'', 8, N'', NULL, N'Beef, Water, Salt, Sugar, Pepper, Granulated Garlic, Chili Powder (Chili Pepper, Spices, Salt, Garlic Powder), Soy Sauce Powder (Wheat, Soybeans, Salt, Spices, Maltodextrin), MSG, Sodium Erythorbate, Sodium Nitrite.', N'', N'', N'0', N'0', 0, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (432, N'', N'', N'71193491821 ', 17, 61, 9.2700, 5, N'Pecan Smoked', 17, 0.11, 3, 49, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 2, 45, N'0', 0.5, 1, N'0', N'0', N'', N'', N'', N'', N'10', N'4', 300, 12, N'', N'', -1, 0, N'0', N'0', 0, N'', N'', N'', 8, N'', NULL, N'Beef, Water, Salt, Sugar, Pepper, Granulated Garlic, Chili Powder (Chili Pepper, Spices, Salt, Garlic Powder), Soy Sauce Powder (Wheat, Soybeans, Salt, Spices, Maltodextrin), MSG, Sodium Erythorbate, Sodium Nitrite.', N'', N'', N'0', N'0', 0, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (433, N'', N'', N'71193492217 ', 17, 61, 14.0800, 5, N'Teriyaki', 17, 1, 4, 28, NULL, N'', N'', N'USDA Inspected', N'', N'', 1, 4, 28, N'G', 200, N'', NULL, 60, N'5', 0.5, 1, N'0', N'0', N'0', N'', N'', N'', N'10', N'4', 490, 20, N'', N'', 5, 2, N'', N'', 4, N'', N'', N'', 8, N'16', NULL, N'Beef, Teriyaki Sauce (Soy Sauce [Water, Soybeans, Wheat, Salt], Sugar, Sake [Water, Glucose, Sweet Rice Extract, Salt, Lactic Acid, Succinic Acid], Water, Natural Flavorings), Water, Brown Sugar, Teriyaki Seasoning (Soy Sauce Powder [Soy Sauce [Wheat, Soybeans, Salt], Maltodextrin, Salt], Flavor [Maltodextrin, Flavor, Sulfur Dioxide], Brown Sugar, Spices, Onion, Garlic), Salt, Sodium Erythorbate, Sodium Nitrite.', N'', N'Contains Wheat and Soy.', N'', N'', NULL, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (434, N'', N'', N'71537020724 ', 59, 23, 12.3100, 69, N'Cranberry Diet  ', 18, 33.8, 4, 1, NULL, N'', N'', N'', N'', N'', 8, 4, 240, N'ML', 188, N'', 4, 5, N'', 0, 0, N'0', N'0', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 1, 0, N'', N'', 1, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Cranberry Juice Concentrate, Natural And Artificial Flavors, Citric Acid, Aspartame, Potassium Benzoate And Potassium Sorbate (Preservatives), Red 40.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (435, N'', N'', N'71537052725 ', 59, 23, 13.8000, 69, N'Cranberry Diet  ', 18, 67.6, 4, 2, NULL, N'', N'', N'', N'', N'', 8, 4, 240, N'ML', 188, N'', 8, 5, N'', 0, 0, N'0', N'0', N'', N'', N'', N'', N'', N'', 0, 0, N'', N'', 1, 0, N'', N'', 1, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Cranberry Juice Concentrate, Natural And Artificial Flavors, Citric Acid, Aspartame, Potassium Benzoate And Potassium Sorbate (Preservatives), Red 40.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (436, N'', N'', N'71720530153 ', 79, 100, 10.0600, 7, N'', 2, 1.84, 4, 52, NULL, N'', N'', N'', N'', N'', 1.84, 4, 52, N'G', 200, N'', 1, 220, N'35', 4, 6, N'3', N'15', N'0', N'', N'', N'', N'0', N'0', 35, 1, N'', N'', 45, 15, N'1', N'4', 42, N'', N'', N'', 1, N'2', NULL, N'Sugar, Semi-Sweet Chocolate (Sugar, Chocolate, Cocoa Butter, Soya Lecithin-an Emulsifier, Vanillin-an Artificial Flavor), Corn Syrup, Confectioner''s Glaze, Modified Food Starch, Peppermint Oil, Invertase (an Enzyme), Soya Albumin (a Protein), Gelatin.', N'', N'Manufactured on shared equipment with Milk-containing products. Incidental Milk may be present.', N'0', N'0', 0, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (437, N'', N'', N'71720530405 ', 79, 100, 7.0500, 7, N'', 2, 3, 4, 85, NULL, N'', N'', N'', N'', N'', 1.4, 4, 40, N'G', 200, N'', 2, 170, N'30', 3, 5, N'2.5', N'13', N'0', N'', N'', N'', N'0', N'0', 30, 1, N'', N'', 35, 12, N'1', N'4', 32, N'', N'', N'', 1, N'2', NULL, N'Sugar, Semi-Sweet Chocolate (Sugar, Chocolate, Cocoa Butter, Soya Lecithin-an Emulsifier, Vanillin-an Artificial Flavor), Corn Syrup, Confectioner''s Glaze, Modified Food Starch, Peppermint Oil, Invertase (an Enzyme), Soya Albumin (a Protein), Gelatin.', N'', N'Manufactured on shared equipment with Milk-containing products.', N'0', N'0', 0, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (438, N'', N'', N'71720530900 ', 79, 100, 10.1000, 7, N'Theater Pack', 2, 4.75, 4, 134, NULL, N'', N'', N'', N'', N'', 1.4, 4, 40, N'G', 200, N'', 3.5, 170, N'30', 3, 5, N'2.5', N'13', N'0', N'', N'', N'', N'0', N'0', 30, 1, N'', N'', 35, 12, N'1', N'4', 32, N'', N'', N'', 1, N'2', NULL, N'Sugar, Semi-Sweet Chocolate (Sugar, Chocolate, Cocoa Butter, Soya Lecithin-an Emulsifier, Vanillin-an Artificial Flavor), Corn Syrup, Confectioner''s Glaze, Modified Food Starch, Peppermint Oil, Invertase (an Enzyme), Soya Albumin (a Protein), Gelatin.', N'', N'Milk and Egg may be present.', N'0', N'0', 0, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (439, N'', N'', N'71720531907 ', 79, 25, 4.4600, 7, N'Mini - Vanilla', 2, 4.75, 4, 134, NULL, N'', N'', N'', N'', N'', 1.4, 4, 40, N'G', 200, N'', 3.5, 180, N'45', 5, 8, N'4', N'20', N'0', N'', N'', N'', N'0', N'0', 25, 1, N'', N'', 32, 11, N'0', N'0', 23, N'', N'', N'', 1, N'', NULL, N'Corn Syrup, Sugar, Partially Hydrogenated Vegetable Oil (Contains one or more of the following: Palm Kernel, Palm, Soybean, Cottonseed), Nonfat Dry Milk, Cocoa, Lactose, Milk Protein Concentrate, Egg Albumen, Artificial Flavor, Soya Lecithin, Soya Protein, Salt.', N'', N'', N'0', N'0', 2, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (440, N'', N'', N'71720534908 ', 79, 99, 9.2800, 7, N'Theater Pack', 2, 4.25, 4, 120, NULL, N'', N'', N'', N'', N'', 1.4, 4, 42, N'G', 200, N'', 3, 190, N'50', 6, 9, N'2.5', N'13', N'0', N'', N'', N'', N'5', N'2', 45, 2, N'', N'', 33, 11, N'0', N'0', 24, N'', N'', N'', 1, N'2', NULL, N'Milk Chocolate (Sugar, Cocoa Butter, Chocolate, Milk and Soya Lecithin - an Emulsifier), Sugar, Corn Syrup, Partially Hydrogenated Soybean Oil, Dry Whole Milk, Glycerol Monostearate, Natural and Artificial Flavors, Whey, Confectioner''s Glaze, Salt, Modified Food Starch, Soya Lecithin.', N'', N'Egg may be present.', N'0', N'0', 4, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (441, N'', N'', N'71817000217 ', 4, 9, 4.2700, 69, N'', 18, 67.6, 1, 2, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 8.5, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 20, 1, N'', N'', 25, 9, N'', N'', 25, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Natural and Artificial Flavor, Red #40, Citric Acid and Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (442, N'', N'', N'71817000378 ', 4, 9, 8.9600, 69, N'', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 20, 1, N'', N'', 25, 9, N'', N'', 25, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Natural and Artificial Flavor, Red #40, Citric Acid and Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (443, N'', N'', N'71817000392 ', 4, 8, 5.6800, 69, N'', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 130, N'', 0, 0, N'', N'', N'0', N'', N'', N'', N'', N'', 30, 1, N'', N'', 32, 11, N'', N'', 32, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Sodium Benzoate (a Preservative), Citric Acid, Artificial Flavor, Caffeine and Blue 1.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (444, N'', N'', N'71817000453 ', 4, 9, 13.3400, 69, N'', 18, 33.8, 1, 1, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 4.25, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 20, 1, N'', N'', 25, 9, N'', N'', 25, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Natural and Artificial Flavor, Red #40, Citric Acid and Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (445, N'', N'', N'71817002419 ', 4, 9, 5.5400, 69, N'', 18, 101.4, 1, 3, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 12.7, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 20, 1, N'', N'', 25, 9, N'', N'', 25, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Natural and Artificial Flavor, Red #40, Citric Acid and Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (446, N'', N'', N'71851100058 ', 6, 11, 11.2900, 70, N'Lobster Bisque', 3, 10.5, 4, 298, NULL, N'', N'', N'', N'', N'', 5.25, 4, 149, N'G', 200, N'', 2, 100, N'35', 4, 6, N'2.5', N'12', N'', N'', N'', N'', N'20', N'7', 850, 35, N'', N'', 10, 3, N'0', N'0', 3, N'', N'', N'', 5, N'', NULL, N'Reconstituted Whole Milk, Water, Lobster, Wheat Flour, Sherry Wine, Tomato Paste, Modified Corn Starch, Lobster Flavor, Salt, Bell Peppers, MSG, Onion, Spices.', N'', N'', N'4', N'2', 8, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (447, N'', N'', N'72655405073 ', 14, 81, 1.6300, 27, N'General Tso''s Spicy Chicken', 19, 10.8, 4, 306, NULL, N'', N'', N'USDA Inspected, AHA ', N'', N'', 10.8, 4, 306, N'G', 200, N'', 1, 310, N'35', 3.5, 5, N'1', N'5', N'0', N'', N'1', N'1.5', N'30', N'10', 500, 21, N'390', N'11', 50, 17, N'5', N'20', 10, N'', N'', N'', 18, N'36', NULL, N'Cooked Rice, Chicken Tenderloin Chunks (Chicken Tenderloin, Water, Olive Oil, Seasoning [Salt, Chicken Broth Powder {Maltodextrin, Chicken Broth, Salt, and Flavors}, Fructose, Soy Lecithin, Paprika, Flavors, and Caramel Color], Isolated Soy Protein Product  [Isolated Soy Protein, Modified Food Starch, Starch, Carrageenan, Soy Lecithin]), Water, Carrots, Peas, Red Pepper, Scallions, Sugar, Soy Sauce (Water, Wheat, Soybeans, Salt, Alcohol, Vinegar, and Lactic Acid), Sake (Contains Salt), Contains 2% or less of: Rice Vinegar, Modified Corn Starch, Canola Oil, Crushed Garlic (Contains Citric Acid), Ginger, Locust Bean Gum, Red Pepper, Black Pepper, Caramel Color.', N'Keep Frozen', N'Contains: Wheat, Soy.', N'25', N'10', 2, N'6', NULL, N'', N'', N'10', N'10', N'25', N'', NULL, N'20', NULL, N'', N'', N'', 20, NULL, N'', N'', N'', N'', N'20', N'', N'', N'', N'', N'10', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (448, N'', N'', N'72655405097 ', 14, 81, 11.4900, 27, N'Grilled Whiskey Steak', 19, 9.5, 4, 269, NULL, N'', N'', N'USDA Inspected, AHA ', N'', N'', 9.5, 4, 269, N'G', 200, N'', 1, 260, N'40', 4, 6, N'1.5', N'8', N'0', N'', N'0.5', N'2', N'35', N'12', 580, 24, N'1075', N'31', 36, 12, N'6', N'24', 10, N'', N'', N'', 17, N'34', NULL, N'Red Roasted Potatoes (Contains Salt), Cooked Seasoned Grilled Beef Steak Strips and Modified Food Starch Product - Caramel Color and Smoke Flavor added (Beef, Water, Dextrose, Modified Food Starch, Potassium Chloride, Caramel Color, Sodium and Potassium Phosphates, Salt, Smoke Flavor, Spice Extractives), Onions, Water, Green Beans, Tomatoes, Corn, Molasses, Barbecue Seasoning: Brown Sugar, Sugar, Molasses, Worcestershire Sauce Powder (Corn Syrup Solids, Salt, Caramel Color, Garlic, Sugar, Spices Soy Sauce Solids [Naturally Fermented Wheat and Soybean, Salt, Maltodextrin, Caramel Color], Palm Oil, Tamarind, Natural Flavor), Maltodextrin, Sodium Diacetate, Spices including Paprika and Turmeric, Natural Smoke Flavor (Contains Maltodextrin), Citric Acid, Lactose, Dehydrated Onion and Garlic. Tomato Paste, Contains 2% or less of: Corn Syrup, Whiskey with Salt, Red Wine Vinegar, Modified Food Starch, Granulated Garlic, Salt, Potassium Chloride, Locust Bean Gum, Spice.', N'Keep Frozen', N'Contains: Wheat, Soy, Milk.', N'2', N'8', 8, N'10', NULL, N'6', N'', N'15', N'25', N'15', N'', NULL, N'90', NULL, N'', N'', N'', 30, NULL, N'15', N'20', N'', N'', N'20', N'', N'', N'', N'', N'8', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (449, N'', N'', N'72655405134 ', 14, 81, 15.3300, 27, N'Sweet Sesame Chicken', 19, 10.3, 4, 292, NULL, N'', N'', N'USDA Inspected, AHA ', N'', N'', 10.3, 4, 292, N'G', 200, N'', 1, 330, N'60', 6, 9, N'1', N'5', N'0', N'', N'2', N'2.5', N'30', N'10', 400, 17, N'440', N'13', 50, 17, N'6', N'24', 19, N'', N'', N'', 17, N'34', NULL, N'Cooked Rice, Chicken Tenderloins (Chicken Tenderloins, Water, Olive Oil, Seasoning [Salt, Chicken Broth Powder {Maltodextrin, Chicken Broth, Salt, and Flavors}, Fructose, Soy Lecithin, Paprika, Flavors, and Caramel Color], Isolated Soy Protein Product  [Isolated Soy Protein, Modified Food Starch, Starch, Carrageenan, Soy Lecithin]), Snow Pea Pods, Water, Carrots, Mushrooms, Sugar, Honey Granules (Refinery Syrup, Honey), Contains 2% or less of: Soy Sauce (Water, Wheat, Soybeans, Salt, Alcohol, Vinegar, and Lactic Acid), Concentrated Pineapple Juice, Sesame Seed and Sesame Oil, Rice Vinegar, Spices Modified Corn Starch, Sake (Contains Salt), Soybean Oil, Locust Bean Gum, Garlic, Garlic Powder.', N'Keep Frozen', N'Contains: Soy, Wheat, Sesame.', N'30', N'2', 4, N'4', NULL, N'35', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'10', 25, NULL, N'10', N'', N'', N'', N'50', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (450, N'', N'', N'72655405196 ', 14, 81, 0.2500, 27, N'Five-Spice Beef & Vegetables', 19, 10.2, 4, 289, NULL, N'', N'', N'USDA Inspected, AHA ', N'', N'', 10.2, 4, 289, N'G', 200, N'', 1, 310, N'45', 5, 8, N'1.5', N'8', N'0', N'', N'1', N'2', N'30', N'10', 600, 25, N'570', N'16', 49, 16, N'7', N'28', 17, N'', N'', N'', 15, N'30', NULL, N'Cooked Rice, Seasoned Cooked Beef and Binder Product (Beef, Water, Contains 2% or less of: Caramel Color, Dextrose, Flavor [Natural Flavor, Salt, Maltodextrin, Dried Whey, Dried Cauliflower and Sesame Oil], Modified Corn Starch, Potassium Chloride, Potassium Phosphate, Salt, Sodium Phosphates, Spice Extractives), Water, Carrots, Red and Green Peppers, Water Chestnuts, Hoisin Sauce (Sugar, Water, Miso [Soybeans, Rice, Salt], Plum Puree, Naturally Brewed Soy Sauce [Water, Wheat, Soybeans, Salt], Garlic Caramel Color, Modified Food Starch, Fermented Wheat Protein, Vinegar, Salt, Spices, Xanthan Gum, Citric Acid), Honey Granules (Refinery Syrup, Honey), Contains 2% or less of: Soy Sauce (Water, Wheat, Soybeans, Salt, Alcohol, Vinegar, Lactic Acid), Sake (Contains Salt), Modified Corn Starch, Soybean Oil, Spice Blend, Black Pepper, Caramel Color.', N'', N'Contains: Milk, Sesame, Soy, Wheat.', N'35', N'10', 6, N'6', NULL, N'', N'', N'15', N'15', N'', N'', NULL, N'', NULL, N'15', N'', N'', 20, NULL, N'', N'25', N'', N'', N'15', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (451, N'', N'', N'72655405264 ', 14, 80, 7.0000, 27, N'Sweet Asian Potstickers', 2, 10, 4, 284, NULL, N'', N'', N'Smart Choices', N'', N'', 10, 4, 284, N'G', 200, N'', 1, 380, N'45', 4.5, 8, N'1', N'13', N'0', N'', N'2', N'1.5', N'5', N'2', 600, 25, N'220', N'6', 75, 25, N'6', N'24', 19, N'', N'', N'', 8, N'', NULL, N'Vegetable Potstickers (Filling [Cabbage, Vermicelli (Mung Bean, Water), Baked Tofu (Tofu [Water, Whole Soybeans, Nigari],Tamari [Water, Soybeans, Salt, Alcohol, Wheat], Natural Flavors, Spices), Bulgar Wheat, Precooked Rice, Water, Chestnuts, Green Beans, Onions, Carrots, Soy Sauce  (Water, Wheat, Soybeans, Salt), Sesame Oil, Evaporated Cane Juice, Salt, Xanthan Gum, Spice]. Wrapper [Wheat Flour, Water, Corn Starch, Soybean and/or Canola Oil]), Cooked Whole Grain Brown Rice, Water, Sugar, Carrots, Red Peppers, Sake, Rice Vinegar, Scallions, Corn Starch, Wheat, Soybeans, Spices, Sesame Oil, Garlic Puree, Salt, Locust Bean Gum.', N'Keep Frozen', N'Contains: Wheat, Soy, Sesame.', N'30', N'0', 4, N'6', NULL, N'20', N'', N'6', N'6', N'4', N'', NULL, N'4', 30, N'4', N'', N'', 15, NULL, N'15', N'8', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (452, N'', N'', N'72796990001 ', 43, 93, 13.3700, 15, N'Six Pack', 10, 72, 1, 2.1, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 6, 180, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 75, 3, N'', N'', 48, 16, N'', N'', 48, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup and/or Sugar, Natural and Artificial Flavors, Sodium Benzoate (preservative), Citric Acid, Caramel Color, Potassium Sorbate (preservative), Calcium Disodium EDTA (to protect flavor).', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (453, N'', N'', N'72799050146 ', 74, 156, 8.3200, 10, N'', 25, 1.43, 4, 40.5, NULL, N'', N'', N'', N'Germany', N'', 1.43, 4, 40.5, N'G', 200, N'', 1, 190, N'60', 7, 11, N'4', N'20', N'', N'', N'', N'', N'0', N'0', 15, 1, N'', N'', 31, 10, N'0', N'0', 15, N'', N'', N'', 2, N'', NULL, N'Glucose Syrup, Semi-Sweet Chocolate (Sugar, Cocoa, Cocoa Liquor, Cocoa Butter, Butterfat, Soy Lecithin Emulsifier, Artificial Flavoring Vanillin), Whey, Sugar, Sweetened Condensed Skim Milk, Vegetable Oil (Palm Oil and/or Sheanut Oil), Cocoa, Sorbitol Humectant, Whey Powder, Food Starch-Modified.', N'', N'Manufactured in a facility that processes Peanuts, Hazelnuts, and Other Nuts.', N'0', N'0', 2, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (454, N'', N'', N'73391000553 ', 80, 112, 5.7500, 61, N'', 18, 64, 1, 1.89, NULL, N'', N'', N'OU', N'', N'', 1, NULL, 14, N'G', 200, N'', 128, 120, N'120', 14, 22, N'2.5', N'12', N'0', N'', N'5', N'6', N'0', N'0', 0, 0, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Peanut Oil.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (455, N'', N'', N'73391100055 ', 80, 112, 10.3200, 61, N'', 18, 24, 1, 709, NULL, N'', N'', N'OU', N'', N'', 1, NULL, 14, N'G', 200, N'', 48, 120, N'120', 14, 22, N'2.5', N'12', N'0', N'', N'5', N'6', N'0', N'0', 0, 0, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Peanut Oil.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (456, N'', N'', N'73630013511 ', 53, 137, 2.1800, 60, N'Spicy Arrabbiata', 11, 26, 4, 737, NULL, N'', N'', N'', N'', N'', 4.5, 4, 125, N'G', 200, N'', 6, 70, N'25', 2.5, 4, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 390, 16, N'', N'', 10, 3, N'2', N'8', 3, N'', N'', N'', 2, N'', NULL, N'Tomatoes, Tomato Puree (Water, Tomato Paste), Onions, Extra Virgin Olive Oil, Garlic, Sea Salt, Sugar, Basil, Spices and Crushed Red Chile Pepper.', N'Refrigerate after Opening', N'', N'25', N'35', 2, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (457, N'', N'', N'73970102074 ', 56, 62, 10.4300, 15, N'', 3, 12, 4, 355, NULL, N'', N'', N'K-P', N'', N'', 12, 4, 355, N'ML', 188, N'', 1, 180, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 25, 1, N'', N'', 44, 15, N'', N'', 44, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup and/or Sugar, Natural and Artificial Flavors, Sodium Benzoate (Preservative), Citric Acid and Caramel Color.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (458, N'', N'', N'74683099422 ', 2, 69, 7.6000, 60, N'Tomato & Basil', 11, 25, 4, 709, NULL, N'', N'', N'OU', N'', N'', 4, 4, 124, N'G', 200, N'', 6, 80, N'25', 2.5, 4, N'0', N'2', N'0', N'', N'', N'', N'0', N'0', 640, 27, N'', N'', 13, 4, N'1', N'4', 10, N'', N'', N'', 2, N'', NULL, N'Tomato Puree (Water, Tomato Paste), Diced Tomatoes (Tomatoes, Tomato Juice, Citric Acid), Contains 2% or less of the following: Sugar, Soybean Oil, Salt, Dried Onion, Basil, Extra Virginia Olive Oil, Spice, Dried Garlic.', N'Refrigerate after Opening', N'', N'15', N'0', 4, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (459, N'', N'', N'74683099491 ', 2, 69, 15.2500, 60, N'Roasted Gaaahlic', 11, 25, 4, 709, NULL, N'', N'', N'OU', N'', N'', 4, 4, 124, N'G', 200, N'', 6, 80, N'30', 3.5, 5, N'0.5', N'2', N'0', N'', N'', N'', N'0', N'0', 470, 20, N'', N'', 12, 4, N'-1', N'2', 7, N'', N'', N'', 2, N'', NULL, N'Tomato Puree (Water, Tomato Paste), Diced Tomatoes (Tomatoes, Tomato Juice, Citric Acid), Roasted Garlic (Garlic, Soybean and/or Canola Oil), Extra Virgin Olive Oil, Contains 2% or less of the following: Salt, Sugar, Hot Pepper Sauce (Cayenne Peppers, Distilled Vinegar, Salt, Garlic), Onions, Concentrated Lemon Juice, Spices, Basil.', N'Refrigerate after Opening', N'', N'15', N'0', 4, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (460, N'', N'', N'76183188019 ', 70, 68, 8.5000, 20, N'Fire Dragonfruit', 12, 18, 1, 532, NULL, N'', N'', N'K-Pareve', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 120, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 10, 0, N'', N'', 29, 10, N'', N'', 28, N'', N'', N'', 0, N'', NULL, N'Water, High Fructose Corn Syrup, Pear Juice from Concentrate, Citric Acid, Natural Dragonfruit, Raspberry, Strawberry, and Lime Flavors with other Natural Flavors, Potassium Citrate, Ginseng Extract, Caffeine, Taurine, Dragonfruit Puree, Red 40, Niacinamide (Vitamin B3), Calcium Pantothenate (Vitamin B5), Pyridoxine Hydrochloride (Vitamin B6), Blue 1, Cyanocobalamin (Vitamin B12).', N'Refrigerate after Opening', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'20', N'', NULL, N'50', NULL, N'50', N'', N'25', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (461, N'', N'', N'77013000310 ', 57, 145, 9.3700, 33, N'', 9, 36, 4, 1.02, NULL, N'', N'', N'Animal Care Certified', N'', N'', 2, 4, 50, N'G', 200, N'1', 18, 70, N'40', 4.5, 7, N'1.5', N'8', N'', N'', N'', N'', N'215', N'71', 65, 3, N'', N'', -1, 0, N'', N'', NULL, N'', N'', N'', 6, N'', NULL, N'Grade A Large Fresh Eggs.', N'Keep Refrigerated', N'', N'6', N'0', 2, N'4', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (462, N'', N'', N'77013000563 ', 57, 145, 10.0900, 33, N'Eggs Plus - Golden Yolks', 9, 24, 4, 680, NULL, N'', N'', N'', N'', N'', 2, 4, 50, N'G', 200, N'1', 12, 70, N'40', 4.5, 8, N'1.5', N'8', N'0', N'', N'1', N'2', N'215', N'71', 65, 2, N'', N'', -1, 0, N'', N'', NULL, N'', N'', N'', 6, N'13', NULL, N'Grade A Large Fresh Eggs.', N'Keep Refrigerated', N'', N'6', N'0', 2, N'4', NULL, N'25', N'', N'2', N'15', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (463, N'', N'', N'78000054408 ', 18, 2, 10.3100, 15, N'Sparkling Vanilla', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 4, 240, N'ML', 188, N'', 2.5, 120, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 30, 1, N'', N'', 31, 10, N'', N'', 31, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup and / or Sugar, Sodium Benzoate (Preservative), Natural and Artificial Flavors, Caramel Color, Citric Acid, Flavored with Vanilla Extract, Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (464, N'', N'', N'78000082166 ', 18, 63, 0.4700, 69, N'23', 2, 144, 1, 4.3, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 12, 150, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 55, 2, N'', N'', 40, 13, N'', N'', 40, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Phosphoric Acid, Natural and Artificial Flavors, Sodium Benzoate (Preservative), Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (465, N'', N'', N'78000082401 ', 18, 63, 12.2800, 69, N'23', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 35, 1, N'', N'', 27, 9, N'', N'', 27, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Phosphoric Acid, Natural and Artificial Flavors, Sodium Benzoate (Preservative), Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (466, N'', N'', N'78000082456 ', 18, 63, 12.3200, 69, N'23', 18, 33.8, 1, 1, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 4, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 35, 1, N'', N'', 27, 9, N'', N'', 27, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Phosphoric Acid, Natural and Artificial Flavors, Sodium Benzoate (Preservative), Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (467, N'', N'', N'78000082463 ', 18, 63, 10.9200, 69, N'23', 18, 67.6, 1, 2, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 8, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 35, 1, N'', N'', 27, 9, N'', N'', 27, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Caramel Color, Phosphoric Acid, Natural and Artificial Flavors, Sodium Benzoate (Preservative), Caffeine.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (468, N'', N'', N'78000083408 ', 18, 53, 7.8800, 69, N'', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 35, 1, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Aspartame, Phosphoric Acid, Natural and Artificial Flavors, Sodium Benzoate (preservative), Caffeine.', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (469, N'', N'', N'78000083453 ', 18, 53, 2.1400, 69, N'', 18, 33.8, 1, 1, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 4, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 35, 1, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Aspartame, Phosphoric Acid, Natural and Artificial Flavors, Sodium Benzoate (preservative), Caffeine.', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (470, N'', N'', N'78000085167 ', 18, 53, 9.1800, 69, N'Caffeine Free', 2, 144, 1, 4.3, NULL, N'', N'', N'', N'', N'', 12, 1, 355, N'ML', 188, N'', 12, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 55, 2, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, Caramel Color, Aspartame, Phosphoric Acid, Natural and Artificial Flavors, Sodium Benzoate (preservative).', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (471, N'', N'', N'78000089400 ', 18, 53, 4.5200, 69, N'Cherry Vanilla', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 4, 240, N'ML', 188, N'', 2.5, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 45, 2, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water and 2% or less of: Caramel Color, Artificial and Natural Flavors, Aspartame, Sodium Benzoate (Preservative), Citric Acid, Phosphoric Acid, Caffeine, Malic Acid, Red 40.', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (472, N'', N'', N'78000089462 ', 18, 53, 2.9000, 69, N'Cherry Vanilla', 18, 2.1, 6, 2, NULL, N'', N'', N'', N'', N'', 8, 4, 240, N'ML', 188, N'', 8, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 45, 2, N'', N'', 0, 0, N'', N'', NULL, N'', N'', N'', 0, N'', NULL, N'Carbonated Water and 2% or less of: Caramel Color, Artificial and Natural Flavors, Aspartame, Sodium Benzoate (Preservative), Citric Acid, Phosphoric Acid, Caffeine, Malic Acid, Red 40.', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (473, N'', N'', N'78000250404 ', 18, 63, 13.1700, 69, N'Berries & Cream', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 100, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 40, 2, N'', N'', 27, 9, N'', N'', 26, N'', N'', N'', 0, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup and 2% or less of: Caramel Color, Natural and Artificial Flavors, Sodium Benzoate (Preservative), Citric Acid, Phosphoric Acid, Caffeine, Malic Acid.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (474, N'', N'', N'78000251401 ', 18, 63, 12.0000, 69, N'Diet Berries & Cream', 18, 20, 1, 591, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2.5, 0, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 45, 2, N'', N'', 0, 0, N'', N'', 0, N'', N'', N'', 0, N'', NULL, N'Carbonated Water and 2% or less of: Caramel Color, Natural and Artificial Flavors, Aspartame, Sodium Benzoate (Preservative), Citric Acid, Phosphoric Acid, Caffeine, Malic Acid, Acesulfame Potassium.', N'Phenylketonurics: Contains Phenylalanine', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (475, N'', N'', N'79426360081 ', 65, 155, 13.6800, 62, N'Salted in the Shell - Virginia', 17, 8, 4, 226.8, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 5, 160, N'110', 12, 18, N'2', N'11', N'0', N'', N'', N'', N'0', N'0', 210, 9, N'', N'', 7, 2, N'3', N'11', -1, N'', N'', N'', 7, N'', NULL, N'Roasted in the Shell Virginia Peanuts and Salt.', N'', N'Contains: Peanuts', N'0', N'0', 0, N'0', NULL, N'23', N'', N'', N'', N'', N'', NULL, N'', 34, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (476, N'', N'', N'79426600040 ', 65, 155, 14.6400, 62, N'Salted in the Shell', 17, 4, 4, 112, NULL, N'', N'', N'', N'', N'', 1, 4, 28, N'G', 200, N'', 2.5, 160, N'110', 12, 18, N'2', N'11', N'0', N'0', N'', N'', N'0', N'0', 210, 9, N'', N'', 7, 2, N'3', N'11', -1, N'', N'', N'', 7, N'', NULL, N'Roasted in the Shell Virginia Peanuts and Salt.', N'', N'Contains: Peanuts', N'0', N'0', 0, N'0', NULL, N'23', N'', N'', N'', N'', N'', NULL, N'', 34, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (477, N'', N'', N'79893106489 ', 39, 65, 3.6300, 27, N'Butternut Squash Ravioli', 2, 8.4, 4, 238, NULL, N'', N'', N'', N'', N'', 8.4, 4, 238, N'G', 200, N'', 1, 280, N'90', 10, 15, N'3', N'15', N'0', N'', N'', N'', N'30', N'11', 330, 14, N'', N'', 42, 14, N'5', N'18', 7, N'', N'', N'', 10, N'20', NULL, N'Butternut Squash Ravioli (Enriched Durum Flour [Durum Wheat Flour, Niacin, Ferrous Sulfate, Thiamin Mononitrate, Riboflavin, Folic Acid], Water, Butternut Squash, Whole Milk Ricotta Cheese [Whey, Milk, Vinegar, Stabilizer {Corn Starch-Modified, Guar Gum, Carrageenan}, Salt], Onions, Whole Egg, Parmesan Cheese [Milk, Cheese Cultures, Salt, Enzymes], Butternut Squash Powder [Butternut Squash, Maltodextrin, Corn Flour, Corn Starch, Soy Lecithin, Brown Sugar, Corn Starch-Modified, Garlic Powder, Salt, Spices]), Water, Sugar Snap Peas, Yellow Carrots, Carrots, Peas, Milk, Red Bell Peppers, Cream (Cream, Carrageenan), Contains less than 2% of: Walnuts, Chicken Base (Chicken Meat including Natural Chicken Juices, Corn Oil, Yeast Extract, Sugar, Salt, Maltodextrin [from Corn], Natural Flavoring, Potato Starch, Turmeric), Light Corn Syrup (Corn Syrup, Water, High Fructose Corn Syrup), Corn Starch-Modified, Soybean Oil, Sugar, Mushroom Base (Mushrooms, Salt, Butter, Flavorings, Sugar), Garlic (Garlic, Citric Acid), Enriched Flour Bleached (Bleached Wheat Flour, Enzyme, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid or Folate), Mirepoix Base (Sauted Vegetables [Carrots, Celery and Onion], Sugar, Maltodextrin [from Corn], Corn Oil, Salt, Cornstarch, Autolyzed Yeast Extract, Natural Flavoring), Carrot Juice Concentrate (Carrot Juice Concentrate, Citric Acid), Yeast Extract (Yeast Extract, Salt), Partially Hydrogenated Cottonseed and Soybean Oil), Salt, Butter Flavor (Dehydrated Butter, Buttermilk Powder, Flavoring, Synthetic Calcium Silicate, Maltodextrin, Corn Starch-Modified Water, Soy Lecithin), Spices.', N'Keep Frozen', N'', N'80', N'25', 10, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (478, N'', N'', N'79893106496 ', 39, 65, 5.3200, 27, N'Orange Glazed Chicken', 2, 8.75, 4, 248, NULL, N'', N'', N'USDA Inspected', N'', N'', 8.75, 4, 248, N'G', 200, N'', 1, 300, N'45', 5, 7, N'1', N'6', N'0', N'', N'', N'', N'30', N'11', 500, 20, N'', N'', 33, 11, N'3', N'13', 24, N'', N'', N'', 21, N'42', NULL, N'Broccoli, Cooked White Rice, Chicken Breast with Rib Meat, Water, Sugar, Rice Vinegar, Apple Cider Vinegar, Orange Juice Concentrate, Celery, Carrots, Contains less than 2% of: Lite Soy Sauce (Water, Wheat, Soybeans, Salt, Lactic Acid, Sodium Benzoate), Eggs (Whole Eggs, Egg Whites, Skim Milk, Gelatin, Corn Starch-Modified, Carrageenan, Salt, Liquid Pepper Extract, Citric Acid, Annatto and Beta Carotene for color), Peas, Red Bell Peppers, Soybean Oil, Ginger (Ginger, Water, Phosphoric Acid, Xanthan Gum), Green Onion, Corn Starch-Modified, Oriental Spice Base (Sauted Ginger, Chili Garlic Sauce [Chili Peppers, Garlic, Water, Salt, Sugar, Rice Vinegar, Acetic Acid, Corn Starch-Modified], Maltodextrin, Sesame Oil, Salt, Sugar, Canola Oil, Soybeans, Water, Cornstarch, Spice, Wheat, Natural Flavoring, Brown Sugar, Garlic Powder, Caramel Color, Vinegar, Yeast Extract), Sesame Oil, Chicken Base (Chicken Meat including Natural Chicken Juices, Corn Oil, Yeast Extract, Sugar, Salt, Maltodextrin [from Corn], Natural Flavoring, Potato Starch, Turmeric), Flavoring (Dextrose, Salt, Corn Oil, Soy Sauce [Water, Wheat, Soybeans, Salt, Sodium Benzoate], Tomato Puree, Natural Flavoring, Xanthan Gum, Locust Bean Gum, Potato Starch, Extractives of Paprika), Garlic (Garlic, Citric Acid), Milk Protein Concentrate (Sodium Caseinate, Reduced Lactose Whey), Grilled Chicken Flavor (Yeast Extract, Salt, Chicken Powder, Maltodextrin, Sugar, Soy Sauce Solids [Soybeans, Wheat, Salt], Tapioca Maltodextrin, Chicken Fat, Soy Flour, Torula Yeast, Flavor, Caramel Color, Citric Acid, Grilled Flavor [from Vegetable Oil], Corn Starch-Modified, Corn Syrup Solids, Disodium Phosphate, Lactic Acid, Calcium Lactate [Milk], Smoke Flavor), Xanthan Gum, Sodium Phosphates, Chicken Base (Chicken including Natural Chicken Juices, Salt, Chicken Fat, Sugar, Maltodextrin [from Corn], Hydrolyzed Corn Gluten, Dried Whey [Milk], Natural Flavoring, Yeast Extract, Turmeric), Vinegar Powder (Maltodextrin, Vinegar), Artificial Flavor, Lactic Acid, Yeast Extract (Yeast Extract, Salt, Partially Hydrogenated Cottonseed and Soybean Oil), Salt, Butter Flavor (Dehydrated Butter, Buttermilk Powder, Flavoring, Synthetic Calcium Silicate, Maltodextrin, Corn Starch-Modified, Water, Soy Lecithin), Spices.', N'Keep Frozen', N'', N'35', N'80', 6, N'6', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (479, N'', N'', N'79893106519 ', 39, 65, 10.4100, 27, N'Cashew Chicken', 2, 9.65, 4, 274, NULL, N'', N'', N'USDA Inspected', N'', N'', 9.65, 4, 274, N'G', 200, N'', 1, 290, N'35', 4, 6, N'1', N'4', N'0', N'', N'', N'', N'30', N'9', 460, 19, N'', N'', 44, 15, N'3', N'11', 6, N'', N'', N'', 18, N'36', NULL, N'Cooked White Rice, Boneless and Skinless Chicken Breast, Water, Sugar Snap Peas, Shitake Mushrooms, Red Bell Peppers, Celery, Carrots, Bamboo Shoots, Contains less than 2% of: Cashew Nuts (Cashews, Canola Oil), Lite Soy Sauce (Water, Wheat, Soybeans, Salt, Lactic Acid, Sodium Benzoate), Sugar, Light Corn Syrup (Corn Syrup, Water, High Fructose Corn Syrup), Mirin Sake (Water, Rice, Dextrose, Corn Syrup, Salt), Modified Corn Starch, Soybean Oil, Flavoring (Dextrose, Salt, Corn Oil, Soy Sauce [Water, Wheat, Soybeans, Salt, Sodium Benzoate], Tomato Puree, Natural Flavoring, Xanthan Gum, Locust Bean Gum, Potato Starch, Extractives of Paprika), Sesame Oil, Ginger (Ginger, Water, Phosphoric Acid, Xanthan Gum), Garlic (Citric Acid), Milk Protein Concentrate (Sodium Caseinate, Reduced Lactose Whey), Sodium Phosphates, Chicken Base (Chicken including Natural Chicken Juices, Salt, Chicken Fat, Sugar, Maltodextrin [from Corn], Hydrolyzed Corn Gluten, Dried Whey [Milk], Natural Flavoring, Yeast Extract, Turmeric), Onion Powder, Caramel Color, Xanthan Gum, Fish Sauce (Anchovy Fish, Salt, Sugar), Lactic Acid, Yeast Extract (Yeast Extract, Salt, Partially Hydrogenated Cottonseed and Soybean Oil), Spices, Salt, Butter Flavor (Dehydrated Butter, Buttermilk Powder, Flavoring, Synthetic Calcium Silicate, Maltodextrin, Modified Corn Starch, Water, Soy Lecithin).', N'Keep Frozen', N'', N'35', N'20', 4, N'8', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (480, N'', N'', N'79893106540 ', 39, 65, 8.3100, 27, N'Beef Portobello', 2, 9, 4, 255, NULL, N'', N'', N'USDA Inspected', N'', N'', 9, 4, 255, N'G', 200, N'', 1, 260, N'60', 7, 11, N'2', N'10', N'0', N'', N'', N'', N'30', N'9', 680, 28, N'', N'', 42, 14, N'4', N'14', 5, N'', N'', N'', 16, N'32', NULL, N'Potatoes (Roasted Potatoes, Sodium Acid Pyrophosphate), Cooked Seasoned Beef & Modified Food Starch, Steak Product (Beef, Water, Corn Starch-Modified, Starch, Onion, Corn Syrup Solids, Salt, Dextrose, Au Jus Concentrate [Beef Stock, Salt, Natural Flavoring, Yeast Extract, Beef Fat, Cornstarch, Onion Powder, Soy Sauce (Water, Wheat, Soybeans, Salt), Lactic Acid, Potato Starch, Beet Powder, Natural Flavor, Garlic Powder, Corn Syrup Solids], Hydrolyzed Soy Protein, Natural Flavor, Sodium Phosphate, Garlic Powder, Beef Flavor, [Beef Stock, Onion Powder], Caramel Color, Onion Powder), Water, Broccoli, Onions, Red Bell Peppers, Roasted Portobello Mushrooms, Contains less than 2% of: Soybean Oil, Tomato Paste, Burgundy Wine, Currant Jelly (Currant Juice [Water and Currant Juice Concentrate], Corn Syrup, High Fructose Corn Syrup, Fruit Pectin, Citric Acid, Sodium Citrate), Corn Starch-Modified, Beef Au Jus Concentrate (Beef Stock, Salt, Natural Flavoring, Yeast Extract, Beef Fat, Cornstarch, Onion Powder, Soy Sauce [Water, Soybeans, Wheat, Salt], Lactic Acid, Potato Starch, Beet Powder, Natural Flavor, Garlic Powder, Corn Syrup Solids), Salt, Spices, Garlic (Citric Acid), Chicken Flavor (Yeast Extract, Salt, Chicken Powder, Maltodextrin, Sugar, Soy Sauce Solids [Soybeans, Wheat, Salt], Tapioca Maltodextrin, Chicken Fat, Soy Flour, Torula Yeast, Flavor, Caramel Color, Citric Acid, Grill Flavor [from Vegetable Oil], Corn Starch-Modified, Corn Syrup Solids, Disodium Phosphate, Lactic Acid, Calcium Lactate [Milk], Smoke Flavor), Demi Glace (Flour [Wheat Flour, Niacin, Reduced Iron, Thiamin Mononitrate, Riboflavin, Folic Acid], Sugar, Hydrolyzed Soy Protein, Corn Starch-Modified, Partially Hydrogenated Soybean Oil, Salt, Tomato Powder, Beef Fat, Beef Flavor [Yeast Extract, Beef Stock], Beef Extract Powder, Wine Solids, Onion Powder, Caramel Color, Paprika, Beet Powder, Silico N Dioxide, Citric Acid, Yeast Extract, Spice), Yeast Extract (Yeast Extract, Salt, Partially Hydrogenated Cottonseed and Soybean Oil), Xanthan Gum.', N'Keep Frozen', N'', N'15', N'50', 6, N'30', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (481, N'', N'', N'79893106557 ', 39, 65, 10.6200, 27, N'Cheese Ravioli', 2, 8.5, 4, 241, NULL, N'', N'', N'', N'', N'', 8.5, 4, 241, N'G', 200, N'', 1, 280, N'70', 8, 12, N'4.5', N'24', N'0', N'', N'', N'', N'55', N'18', 610, 26, N'', N'', 38, 13, N'3', N'12', 6, N'', N'', N'', 12, N'24', NULL, N'Cheese Ravioli (Enriched Durum Flour [Durum Wheat Flour, Niacin, Ferrous Sulfate, Thiamin Mononitrate, Riboflavin, Folic Acid], Whole Milk Ricotta Cheese [Whey, Pasteurized Milk, Vinegar, Carrageenan], Water, Whole Egg, Cheddar Cheese [Cultured Pasteurized Milk, Salt, Enzymes], Butter [Cream, Natural Flavorings], Dried Egg Whites, Corn Starch-Modified, Parmesan Cheese [Pasteurized Milk, Cheese Cultures, Salt, Enzymes], Salt, Spices, Garlic Puree [Garlic, High Fructose Corn Syrup], Dehydrated Parsley Flakes, Soybean Oil), Water, Tomatoes (Tomatoes, Salt, Calcium Chloride, Citric Acid), Tomato Paste, Reduced Fat Mozzarella Cheese (Pasteurized Part Skim Cow''s Milk, Cheese Cultures, Salt, Enzymes), Contains less than 2 percent of Sugar, Garlic (Citric Acid), Corn Starch-Modified, Onion Powder, Salt, Natural Four Cheese Flavor (Cheddar Cheese [Milk, Cultures, Salt, Enzymes], Enzyme Modified Cheese [Mozzarella Cheese (Milk, Cheese Cultures, Salt, Enzymes)], Parmesan Cheese [Milk, Culture, Salt, Enzymes], Water, Salt, American Cheese [Milk, Culture, Salt, and Enzymes], Cream, Butter Oil, Lactic Acid, Disodium Phosphate, Soy Lecithin, Nonfat Dry Milk), Spices, Xanthan Gum, Dehydrated Parsley.', N'Keep Frozen', N'', N'20', N'15', 20, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (482, N'', N'', N'79893106588 ', 39, 65, 13.2500, 27, N'Sesame Chicken', 2, 9, 4, 255, NULL, N'', N'', N'USDA Inspected', N'', N'', 9, 4, 255, N'G', 200, N'', 1, 370, N'45', 5, 8, N'0.5', N'3', N'0', N'', N'', N'', N'25', N'8', 450, 19, N'', N'', 67, 22, N'3', N'13', 19, N'', N'', N'', 16, N'32', NULL, N'Cooked Spaghetti (Enriched Flour [Durum Semolina (Wheat), Thiamin Mononitrate, Riboflavin, Niacin, Ferrous Sulfate, Folic Acid]), Water, Chicken Breast Tenderloins, Red Plum Preserves (Red Plums, Corn Syrup, High Fructose Corn Syrup, Fruit Pectin, Citric Acid), Bread Crumbs (Bleached Wheat Flour, Dextrose, Salt, Yeast), Green Beans, Red Bell Peppers, Sugar, Contains less than 2 percent of Batter (Yellow Corn Flour, Bleached Wheat Flour, Salt, Leavening [Sodium Acid Pyrophosphate, Sodium Bicarbonate], Nonfat Dry Milk, Spices, Dried Whole Eggs), Sesame Seeds, Lemon Juice (Lemon Juice, Benzoate Soda), Seasoning (Hydrolyzed Corn Gluten), Hydrolyzed Wheat Gluten, Yeast Extract, Partially Hydrogenated Soybean Oil, Soybean Oil (Citric Acid), Soy Sauce (Water, Wheat, Soybeans, Salt, Sodium Benzoate), Corn Starch-Modified, Prune Juice Concentrate (Soluble Prune Solids, Water), Roasted Sesame Seed Oil, Onion Powder, Ginger (Ginger, Water, Phosphoric Acid, Xanthan Gum), Garlic Powder, Sodium Phosphates, Salt, Xanthan Gum, Soy Lecithin, Spices, Nonfat Dry Milk.', N'Keep Frozen', N'', N'8', N'10', 2, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (483, N'', N'', N'79893106618 ', 39, 65, 7.2500, 27, N'Sweet & Sour Chicken', 2, 10, 4, 284, NULL, N'', N'', N'USDA Inspected', N'', N'', 10, 4, 284, N'G', 200, N'', 1, 320, N'35', 3.5, 6, N'0.5', N'3', N'0', N'', N'', N'', N'30', N'10', 470, 19, N'', N'', 57, 19, N'2', N'7', 26, N'', N'', N'', 15, N'30', NULL, N'Cooked White Rice, Water, Chicken Breast Tenderloins, Green Bell Peppers, Sugar, Red Bell Peppers, Carrots, Vinegar (Water, Rice, Rice Wine Mill, Sugar Cane), Apricot Preserves (Corn Syrup, Apricots, High Fructose Corn Syrup, Apricot Puree, Sugar, Fruit Pectin, Citric Acid), Pineapple (Pineapple, Water, Sugar, Citric Acid), Contains less than 2% of Catsup (Tomatoes, Corn Syrup, Vinegar, Salt, Onion Powder, Garlic Powder, Spices, Natural Flavoring), Chicken Base (Chicken Meat including Natural Chicken Juices, Corn Oil, Yeast Extract, Sugar, Salt, Maltodextrin [from Corn], Natural Flavoring, Potato Starch, Turmeric), Lite Soy Sauce (Water, Wheat, Soybeans, Salt, Lactic Acid, Sodium Benzoate), Orange Marmalade (Corn Syrup, High Fructose Corn Syrup, Orange Peel, Orange Juice [Water, Orange Juice Concentrate], Fruit Pectin, Citric Acid, Orange Oil, Sodium Citrate), Soybean Oil (Citric Acid), Onions, Corn Starch-Modified, Pineapple Juice Concentrate, Sodium Phosphates, Carrageenan, Xanthan Gum, Salt, Vinegar Powder (Maltodextrin, Vinegar), Spices.', N'Keep Frozen', N'', N'40', N'30', 4, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (484, N'', N'', N'79893106656 ', 39, 65, 2.3300, 27, N'Chicken Enchilada', 2, 9, 4, 255, NULL, N'', N'', N'USDA Inspected', N'', N'', 9, 4, 255, N'G', 200, N'', 1, 300, N'60', 6, 10, N'2.5', N'12', N'0', N'', N'', N'', N'30', N'9', 550, 23, N'', N'', 43, 14, N'3', N'11', 3, N'', N'', N'', 16, N'32', NULL, N'Cooked White Rice, Water, Chicken Breast Tenderloins, White Corn Tortilla (White Corn, Water, Calcium Propionate or Potassium Sorbate, Lime), Onions, Corn, Green Chilies (Green Chile Peppers, Water, Salt, Citric Acid, Calcium Chloride), Black Beans (Black Beans, Water, Salt), Contains less than 2% of Red Bell Peppers, Monterey Jack Cheese (Pasteurized Milk, Cheese Culture, Salt, Enzymes), Salted Chablis Wine, Chicken Base (Chicken Meat including Natural Chicken Juices, Corn Oil, Yeast Extract, Sugar, Salt, Maltodextrin [from Corn], Natural Flavoring, Potato Starch, Turmeric), Swiss Cheese (Part Skim Milk, Cheese Culture, Salt, Enzymes), Cream (Carrageenan), Garlic (Citric Acid), Soybean Oil (Citric Acid), Corn Starch-Modified, Dehydrated Soy Sauce (Soy Sauce [Wheat, Soybeans, Salt], Maltodextrin, Salt), Spices, Salt, Seasoning (Dextrose, Salt, Corn Oil, Soy Sauce [Water, Wheat, Soybeans, Salt, Sodium Benzoate], Tomato Puree, Natural Flavoring, Xanthan Gum, Locust Bean Gum, Potato Starch Extractives of Paprika), Paprika, Sodium Caseinate and Reduced Lactose Whey (Milk), Cilantro Concentrate (Cilantro, Maltodextrin [from Corn], Sugar, Salt, Natural Flavoring, Canola Oil, Cornstarch), Sodium Phosphates, Chicken Flavoring (Chicken including Natural Chicken Juices, Salt, Chicken Fat, Sugar, Maltodextrin [from Corn], Hydrolyzed Corn Gluten, Dried Whey (Milk), Natural Flavoring, Yeast Extract, Turmeric), Lactic Acid.', N'Keep Frozen', N'', N'15', N'15', 15, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (485, N'', N'', N'79893106670 ', 39, 65, 6.3800, 27, N'Chicken with Peanut Sauce', 2, 9, 4, 255, NULL, N'', N'', N'USDA Inspected', N'', N'', 9, 4, 255, N'G', 200, N'', 1, 280, N'90', 10, 15, N'0.5', N'8', N'0', N'', N'', N'', N'25', N'9', 500, 21, N'', N'', 33, 11, N'7', N'27', 6, N'', N'', N'', 19, N'38', NULL, N'Cooked Whole Wheat Linguini (Whole Durum Wheat Flour, Water), Water, Chicken Breast Tenderloins, Sugar Snap Peas, Carrots, Peanut Butter (Peanuts, Dextrose, Corn Syrup, Fully Hydrogenated Vegetable Oil [Cottonseed and Rapeseed Oils] and Salt), Milk, Water Chestnuts, Lite Soy Sauce (Water, Wheat, Soybeans, Salt, Lactic Acid, Sodium Benzoate), Contains less than 2 percent of Pineapple Juice Concentrate, Sugar, Soybean Oil (Citric Acid), Onions, Olive Oil, Cream Roasted Sesame Seed Oil, Dehydrated Soy Sauce (Soy Sauce [Wheat, Soybeans, Salt], Maltodextrin, Salt), Sodium Phosphates, Carrageenan, Salt, Garlic, Ginger (Ginger, Water, Phosphoric Acid, Xanthan Gum), Xanthan Gum, Spices, Corn Starch-Modified.', N'Keep Frozen', N'', N'50', N'4', 6, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (486, N'', N'', N'79893106694 ', 39, 65, 8.7700, 27, N'Lasagana with Meat Sauce', 2, 10.7, 4, 303, NULL, N'', N'', N'USDA Inspected', N'', N'', 10.7, 4, 303, N'G', 200, N'', 1, 370, N'70', 8, 13, N'3.5', N'18', N'0', N'', N'', N'', N'25', N'8', 630, 26, N'', N'', 55, 18, N'3', N'12', 6, N'', N'', N'', 15, N'30', NULL, N'Cooked Lasagna (Semolina, Niacin, Ferrous Sulfate, Thiamin Mononitrate, Riboflavin, Folic Acid), Water, Tomatoes (Tomatoes, Salt, Calcium Chloride, Citric Acid), Lowfat Ricotta Cheese (Pasteurized Whey, Pasteurized Milk, Vinegar, Salt, Carrageenan, Vitamin A Palmitate), Tomatoes in Puree (Tomatoes, Tomato Puree, Salt), Cooked Beef Topping (Beef, Water, Textured Vegetable Protein [Soy Protein Concentrate, Caramel Color], Salt, Seasoning [Sugar, Spices, Spice Extractives], Sodium Phosphate, Hydrolyzed Corn Protein), Milk, Tomato Paste, Mozzarella Cheese (Cultured Milk, Salt, Enzymes, Corn Starch-Modified, Sodium Citrate, Flavors, Annatto), Contains less than 2 percent of Onions, Corn Starch-Modified, Sugar, Seasoning (Hydrolyzed Corn Gluten, Hydrolyzed Wheat Gluten, Yeast Extract, Partially Hydrogenated Soybean Oil), Dehydrated Parmesan Cheese (Granular and Parmesan Cheese [Pasteurized Milk, Cheese Cultures, Salt, Enzymes], Water, Salt, Lactic Acid, Citric Acid), Garlic Powder, Soybean Oil (Citric Acid), Onion Powder, Spices, Salt, Dehydrated Garlic, Enriched Flour (Wheat Flour, Enzyme, Niacin, Reduced Iron, Thiamine Mononitrate, Riboflavin, and Folic Acid), Dehydrated Parsley, Xanthan Gum, Soy Lecithin.', N'Keep Frozen', N'', N'20', N'15', 30, N'15', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (487, N'', N'', N'79893106700 ', 39, 65, 3.0100, 27, N'Macaroni and Cheese', 2, 10, 4, 284, NULL, N'', N'', N'', N'', N'', 10, 4, 284, N'G', 200, N'', 1, 330, N'70', 8, 13, N'4.5', N'23', N'0', N'', N'', N'', N'25', N'8', 770, 32, N'', N'', 46, 15, N'2', N'7', 4, N'', N'', N'', 18, N'36', NULL, N'Cooked Elbow Macaroni (Enriched Semolina [Durum Wheat Semolina, Niacin, Ferrous Sulfate, Thiamin Mononitrate, Riboflavin, Folic Acid]), Water, Lowfat Milk, Reduced Fat Cheddar Cheese (Pasteurized Lowfat Milk, Whey Protein Concentrate [Milk], Cheese Cultures, Salt, Enzymes, Annatto Color, Vitamin A Palmitate), Cheddar Cheese (Cultured Pasteurized Milk, Salt, Enzymes, Annatto Color, Potato Starch), Contains less than 2 percent of Corn Starch-Modified, Milk, Cream, Natural Cheese Flavor (Cheddar Cheese, Natural Flavors, Maltodextrin, Water, Salt, Disodium Phosphate), Cheese Flavor (a Dehydrated Blend of Cheddar Cheese [Milk, Cheese Culture, Salt, Enzymes], Whey [Milk], Buttermilk Solids [Milk], Sodium Phosphate, Lactic Acid, FD&C Yellow 5 and 6), Sodium Phosphates, Salt, Yeast Extract (Yeast Extract, Salt, Partially Hydrogenated Cottonseed and Soybean Oil), Soy Lecithin, Annatto Color, Spices.', N'Keep Frozen', N'', N'10', N'0', 30, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (488, N'', N'', N'79893106731 ', 39, 65, 1.5700, 27, N'Mediterranean Style Chicken', 2, 10.5, 4, 298, NULL, N'', N'', N'USDA Inspected', N'', N'', 10.5, 4, 298, N'G', 200, N'', 1, 230, N'50', 6, 9, N'1', N'4', N'0', N'', N'', N'', N'30', N'9', 500, 21, N'', N'', 30, 10, N'5', N'20', 4, N'', N'', N'', 17, N'34', NULL, N'Cooked Whole Wheat Linguini (Whole Durum Wheat Flour, Water), Water, Chicken Breast Tenderloins, Tomato Sauce (Water, Tomatoes, Tomato Puree, Salt), Yellow Bell Peppers, Zucchini, Tomatoes, Contains less than 2% of Onions, Olives (Sliced Ripe Olives, Water, Salt, Ferrous Gluconate), Chicken Base (Chicken Meat including Natural Chicken Juices, Corn Oil, Yeast Extract, Sugar, Salt, Maltodextrin [from Corn], Natural Flavoring, Potato Starch, Turmeric), Green Olives (Olives, Water, Salt, Lactic Acid, Sodium Benzoate), Corn Starch-Modified, Garlic, Dehydrated Parsley, Olive Oil, Soybean Oil (Citric Acid), Carrageenan, Sodium Phosphates, Salt, Parsley, Spices.', N'Keep Frozen', N'', N'15', N'80', 4, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (489, N'', N'', N'79893106786 ', 39, 65, 9.0100, 27, N'Five-Grain Chicken with Plum Sauce', 2, 9, 4, 255, NULL, N'', N'', N'USDA Inspected', N'', N'', 9, 4, 255, N'G', 200, N'', 1, 310, N'45', 5, 8, N'0.5', N'3', N'0', N'', N'', N'', N'25', N'9', 190, 8, N'', N'', 49, 16, N'5', N'21', 19, N'', N'', N'', 17, N'34', NULL, N'Cooked Whole Grain Blend (Long Grain Parboiled Brown Rice, Grain, Colusari Red Rice, Emperor''s Green Rice, Wild Rice), Chicken Breast with Rib Meat, Italian Cut Green Beans, Carrots, Water, Red Plum Preserves (Red Plumbs, Corn Syrup, High Fructose Corn Syrup, Fruit Pectin, Citric Acid), Contains less than 2 percent of Soybean Oil (Citric Acid), Sugar, Prune Bits (Prune Bits, Vegetable Oil), Lemon Juice (Lemon Juice, Benzoate Soda), Corn Starch - Modified, Prune Juice Concentrate (Soluble Prune Solids, Water), Onion Powder, Garlic Powder, Salt, Sodium Phosphate, Xanthan Gum, Seasoning (Hydrolyzed Corn Gluten, Hydrolyzed Wheat Gluten, Yeast Extract, Partially Hydrogenated Soybean Oil), Spices, Nonfat Dry Milk.', N'Keep Frozen', N'', N'100', N'15', 6, N'10', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (490, N'', N'', N'79893155203 ', 63, 41, 5.0300, 46, N'1% Lowfat', 21, 1, 2, 3.78, NULL, N'', N'', N'K', N'', N'', 8, 1, 240, N'ML', 188, N'', 16, 100, N'20', 2.5, 4, N'1.5', N'8', N'', N'', N'', N'', N'10', N'3', 125, 5, N'', N'', 12, 4, N'0', N'0', 12, N'', N'', N'', 8, N'', NULL, N'Low Fat Milk, Vitamin A Palmitate and Vitamin D3.', N'Keep Refrigerated', N'', N'10', N'4', 3, N'0', 25, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (491, N'', N'', N'80000000910 ', 72, 175, 11.8300, 48, N'Albacore Tuna in Water', 14, 4.5, 4, 128, NULL, N'', N'', N'', N'Thailand', N'', 4.5, 4, 128, N'G', 200, N'', 1, 250, N'110', 12, 18, N'4.5', N'23', N'0', N'', N'', N'', N'40', N'13', 600, 25, N'', N'', 17, 6, N'2', N'8', 8, N'', N'', N'', 19, N'34', NULL, N'Tuna: Albacore, Water, Vegetable Broth (Contains Soy), Salt, Pyrophosphate. Crackers: Wheat Flour, Palm Oil, Sugar, Coconut Oil, Contains 2% or less of Leavening (Sodium Bicarbonate, Sodium Acid Pyrophosphate, Monocalcium Phosphate), Salt. Reduced Calorie Mayonnaise: Water, Soybean Oil, Vinegar, Modified Food Starch, High Fructose Corn Syrup, Egg Whites, Microcrystalline Cellulose, Salt, Whey Protein Concentrate, Sodium Benzoate and Potassium Sorbate (Preservatives), Xanthan Gum, Spices and Natural Flavor, Onion Powder, Garlic Powder, Calcium Disodium EDTA, Oleoresin Paprika, Oleoresin Turmeric. Sweet Relish: Pickles (Cucumbers, Water, Salt, Vinegar), High Fructose Corn Syrup, Cabbage, Corn Syrup, Distilled Vinegar, Salt, Dextrose, Natural Flavoring, Sodium Benzoate and Potassium Sorbate (Preservatives), Xanthan Gum, Alum, Locust Bean and Guar Gums, Dehydrated Red Peppers, Oleoresin Turmeric, FD & C Yellow No. 5 & Blue No. 1, FD & C Yellow No. 5. Mint: Sugar, Glucose Syrup, Water, Peppermint Flavor, FD & C Blue No. 1, FD & C Yellow No. 5.', N'', N'', N'0', N'0', 0, N'0', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (492, N'', N'', N'80793805129 ', 30, 129, 9.2400, 20, N'Fruit Punch', 18, 22, 1, 650, NULL, N'', N'', N'', N'Canada', N'', 8, 1, 240, N'ML', 188, N'', 2.75, 110, N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', 115, 5, N'', N'', 27, 9, N'', N'', 26, N'', N'', N'', NULL, N'', NULL, N'Carbonated Water, High Fructose Corn Syrup, Citric Acid, Taurine, Natural Fruit Punch Flavor with other Natural Flavors, Sodium Citrate, L-Carnitine, Caffeine, Sodium Hexametaphosphate, Pectin, Inositol, Ascorbic Acid (Vitamin C), Monopotassium Phosphate, Sodium Benzoate, Potassium Sorbate, Panax Ginseng Root Extract, Red #40, Calcium Disodium Salt of EDTA (protects freshness), Sucralose, Pyridoxine Hydrochloride (Vitamin B6), Cyanocobalamin (Vitamin B12).', N'Refrigerate after Opening', N'', N'', N'100', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'100', NULL, N'100', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (493, N'', N'', N'82592630865 ', 44, 124, 1.7200, 29, N'Peach Mangosteen Bliss', 18, 15.2, 1, 450, NULL, N'', N'', N'', N'', N'', 8, 1, 240, N'ML', 188, N'', 2, 130, N'0', 0, 0, N'0', N'0', N'0', N'', N'', N'', N'0', N'0', 10, 0, N'', N'', 31, 10, N'0', N'0', 26, N'', N'', N'', 1, N'', NULL, N'Apple Juice, Peach Puree, White Grape Juice from Concentrate (Water, White Grape Juice Concentrate), Mangosteen Puree, Lemon Juice, Natural Flavors, Ascorbic Acid (Vitamin C), Niacinamide (Vitamin B3), D-Calcium Pantothenate (Vitamin B5), Pyridoxine Hydrochloride (Vitamin B6), Cyanocobalamin (Vitamin B12).', N'Keep Refrigerated', N'', N'0', N'100', 0, N'0', NULL, N'', N'', N'', N'', N'25', N'', NULL, N'25', NULL, N'25', N'', N'25', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (494, N'', N'', N'83791020013 ', 85, 188, 4.0200, 63, N'Regular Flavor', 17, 2, 4, 57, NULL, N'', N'', N'K-Parve', N'', N'', 1, 4, 28.3, N'G', 200, N'', 2, 150, N'80', 8, 13, N'1.5', N'8', N'0', N'', N'', N'', N'0', N'0', 50, 2, N'', N'', 17, 6, N'1', N'4', 0, N'', N'', N'', 2, N'', NULL, N'Select Potatoes cooked in Peanut Oil or a blend of Peanut Oil and Rice Bran or Corn Oil, Salt.', N'', N'', N'0', N'8', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (495, N'', N'', N'83791020020 ', 85, 188, 6.4300, 63, N'Hotter ''n Hot Jalapeno', 17, 2, 4, 57, NULL, N'', N'', N'K-Parve', N'', N'', 1, 4, 28.3, N'G', 200, N'', 2, 150, N'70', 8, 13, N'1.5', N'8', N'0', N'', N'', N'', N'0', N'0', 200, 8, N'', N'', 17, 6, N'1', N'4', 0, N'', N'', N'', 2, N'', NULL, N'Select Potatoes cooked in Peanut Oil or a blend of Peanut Oil and Rice Bran or Corn Oil, Salt, Dextrose, Maltodextrin, Jalapeno Pepper Powder, Onion and Garlic Powder, Torula Yeast, Natural Flavor, Corn Starch, Spice, Extractive of Paprika and Artificial Flavor.', N'', N'', N'0', N'8', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (496, N'', N'', N'83791020037 ', 85, 188, 11.8800, 63, N'Spicy Cajun Crawtators', 17, 2, 4, 57, NULL, N'', N'', N'K-Parve', N'', N'', 1, 4, 28.3, N'G', 200, N'', 2, 150, N'70', 8, 12, N'1.5', N'7', N'0', N'', N'', N'', N'0', N'0', 110, 5, N'', N'', 17, 6, N'1', N'5', 0, N'', N'', N'', 2, N'', NULL, N'Select Potatoes cooked in Peanut Oil or a blend of Peanut Oil and Rice Bran or Corn Oil, Dextrose, Maltodextrin, Salt, Spices, Paprika, Onion and Garlic Powder, Torula Yeast, Natural and Artificial Flavors.', N'', N'', N'0', N'8', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (497, N'', N'', N'83791020075 ', 85, 188, 7.8100, 63, N'Cajun Dill Gator-Tators', 17, 2, 4, 57, NULL, N'', N'', N'K-Parve', N'', N'', 1, 4, 28.3, N'G', 200, N'', 2, 150, N'70', 8, 12, N'1.5', N'8', N'0', N'', N'', N'', N'0', N'0', 160, 7, N'', N'', 17, 6, N'1', N'4', 0, N'', N'', N'', 2, N'', NULL, N'Select Potatoes cooked in Peanut Oil or a blend of Peanut Oil and Rice Bran or Corn Oil, Salt, Vinegar Powder (Maltodextrin, Modified Food Starch, Vinegar Solids), Dextrose, Sugar, Sodium Diacetate, Corn Starch, Spices, Garlic, Partially Hydrogenated Soybean Oil, Onion, Paprika (Color), Parsley, Citric Acid and Natural Flavors.', N'', N'', N'0', N'8', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (498, N'', N'', N'83791020105 ', 85, 188, 14.0500, 63, N'Spicy Creole Tomato - Limited Edition', 17, 2, 4, 57, NULL, N'', N'', N'K-Dairy', N'', N'', 1, 4, 28.3, N'G', 200, N'', 2, 150, N'70', 8, 12, N'1.5', N'7', N'0', N'', N'', N'', N'0', N'0', 210, 9, N'', N'', 17, 6, N'1', N'4', -1, N'', N'', N'', 2, N'', NULL, N'Select Potatoes cooked in Peanut Oil or a blend of Peanut Oil and Rice Bran or Corn Oil, Lactose, Sodium Diacetate, Salt, Dextrose, Sugar, Maltodextrin, Onion Powder, Tomato Powder, Tabasco Brand Dry Red Pepper Flavoring (Red Pepper, Distilled Vinegar, Salt), Corn Syrup Solids, Corn Starch, Modified Food Starch, Paprika, Chipotle Pepper, Vinegar Solids, Spices, Beet Powder, Red 40 Lake, Dehydrated Garlic, Citric Acid, Extractives of Paprika, Disodium Inosinate and Disodium Guanylate, Malic Acid, Caramel Color, Yeast Extract, Soy Sauce (Fermented Wheat, Soybeans, Salt, Maltodextrin, Caramel Color),  Natural Flavors, Tamarind.', N'', N'Contains Wheat, Soybean & Milk ingredients.', N'0', N'8', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (499, N'', N'', N'83791020143 ', 85, 188, 8.8900, 63, N'Salt & Vinegar', 17, 2, 4, 57, NULL, N'', N'', N'K-Dairy', N'', N'', 1, 4, 28.3, N'G', 200, N'', 2, 150, N'80', 8, 13, N'1.5', N'8', N'0', N'', N'', N'', N'0', N'0', 250, 10, N'', N'', 16, 5, N'1', N'4', 0, N'', N'', N'', 2, N'', NULL, N'Select Potatoes cooked in Peanut Oil or a blend of Peanut Oil and Rice Bran or Corn Oil, Salt, Sodium Diacetate, Lactose, Vinegar Powder (Maltodextrin, Modified Food Starch, Vinegar), Maltodextrin, Citric Acid, Malic Acid and Sodium Citrate.', N'', N'Contains Milk ingredients.', N'0', N'8', 2, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (500, N'', N'', N'85968003058 ', 25, 76, 4.1400, 16, N'', 3, 15, 4, 425, NULL, N'', N'', N'', N'Thailand', N'', 3, 4, 85, N'G', 200, N'', 3, 45, N'0', 0, 0, N'0', N'0', N'0', N'0', N'', N'', N'0', N'0', 340, 14, N'', N'', 8, 3, N'6', N'23', 0, N'', N'', N'', 3, N'', NULL, N'Baby Corn, Water, Salt.', N'', N'', N'2', N'15', 0, N'2', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (501, N'', N'', N'87684936481 ', 11, 24, 1.3500, 25, N'Berry Ice', 2, 67.5, 1, 2, NULL, N'', N'', N'', N'', N'', 6.75, 1, 200, N'ML', 188, N'', 10, 60, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 55, 2, N'30', N'1', 16, 5, N'', N'', 16, N'', N'', N'', 0, N'', NULL, N'Water, High Fructose Corn Syrup, Sugar, Citric Acid, Sodium Citrate, Potassium Citrate, Natural Flavor.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (502, N'', N'', N'87684948071 ', 11, 24, 2.3200, 25, N'Orange Edge', 2, 67.5, 1, 2, NULL, N'', N'', N'', N'', N'', 6.75, 1, 200, N'ML', 188, N'', 10, 60, N'', 0, 0, N'', N'', N'', N'', N'', N'', N'', N'', 55, 2, N'30', N'1', 16, 5, N'', N'', 16, N'', N'', N'', 0, N'', NULL, N'Water, High Fructose Corn Syrup, Sugar, Citric Acid, Sodium Citrate, Potassium Citrate, Natural Flavor.', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', N'', N'', N'', NULL, N'', NULL, N'', N'', N'', NULL, NULL, N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', N'', NULL, N'', N'', N'', N'', N'', N'', NULL)
GO
INSERT [dbo].[tProduct] ([ProductID], [Status], [UPC-E], [UPC-A ], [ManufacturerID], [BrandID], [InitialPricePerSellableUnit], [NameID], [Description], [ContainerID], [Size], [Size_UOMID], [I_Size], [I_UOMID], [Parent], [Count], [Endorsement(s)], [Country], [Prepared / Notes - Health Claims], [Serving_Size], [Serving_Size_UOMID], [I_Serving_Size], [I-Serving_Size_UOM], [I-Serving_Size_UOMID], [Pieces], [Servings_Per_Container], [Calories], [Fat_Calories], [Total_Fat_G], [Dvp_Total_Fat], [Saturated_Fat_G], [Dvp_Saturated_Fat], [Trans_Fat_G], [Dvp_Trans_Fat], [Polyunsaturated_Fat_G], [Monounsaturated Fat_G], [Cholesterol_MG], [Dvp_Cholesterol], [Sodium_MG], [Dvp_Sodium], [Potassium_MG], [Dvp_Potassium], [Carbohydrates_G], [Dvp_Carbohydrates], [Fiber_G], [Dvp_Dietary_Fiber], [Sugars_G], [Dvp_Sugar], [Other_Carbohydrates_G], [Sugar Alcohols_G], [Protein_G], [Dvp_Protein], [Net_Carbs_G], [Ingredients], [Warnings], [Allergy Information], [Dvp_Vitamin_A], [Dvp_Vitamin_C], [Dvp_Calcium], [Dvp_Iron], [Dvp_Vitamin_D], [Dvp_Vitamin_E], [Dvp_Vitamin_K], [Dvp_Thiamin], [Dvp_Riboflavin], [Dvp_Niacin], [Dvp_Vitamin_B1], [Dvp_Vitamin_B2], [Dvp_Vitamin_B6], [Dvp_Folic_Acid], [Dvp_Vitamin_B12], [Dvp_Biotin], [DVP_Pantothenic_Acid], [Dvp_Phosphorus], [Dvp_Iodine], [Dvp_Magnesium], [Dvp_Zinc], [Dvp_Selenium], [Dvp_Copper], [Dvp_Manganese], [Dvp_Chromium], [Dvp_Molybdenum], [Dvp_Vitamin_B3], [Dvp_Vitamin_B5], [Dvp_Folate], [Soluble Fiber], [Insoluble Fiber], [Phosphate], [Chloride], [Caffeine_Mg], [Silica], [pH], [Bicarbonates], [Total Dissolved Solids], [Omega 3], [Oleic Acid], [ProductImage]) VALUES (503, NULL, NULL, N'1311012     ', 86, 190, 3.4500, 78, N'Mini Bars', 1, 0.17, 5, 100, 3, NULL, NULL, NULL, NULL, NULL, 1, 3, NULL, NULL, NULL, NULL, NULL, 310, N'.1', 0.1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 62, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, N'Sugar, glucose syrup, cocoa BUTTER, whole MILK powder, skimmed MILK powder, vegetable fat (palm, canola) cocoa mass, emulsifier (SOYA lecithin), salt, flavourings (i.a. vanillin). Chocolate contains vegetable fats in addition to cocoa BUTTER and cocoa solids: 25% min. May contain traces of nuts. ', N'May contain traces of nuts. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
GO
SET IDENTITY_INSERT [dbo].[tProduct] OFF
GO
SET IDENTITY_INSERT [dbo].[tProductIngredient] ON 

GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181054, 2, 63240, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181055, 3, 63241, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181056, 3, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181057, 3, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181058, 3, 63244, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181059, 3, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181060, 3, 63246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181061, 3, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181062, 3, 63248, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181063, 3, 63249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181064, 4, 63241, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181065, 4, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181066, 4, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181067, 4, 63244, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181068, 4, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181069, 4, 63246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181070, 4, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181071, 4, 63248, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181072, 4, 63249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181073, 5, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181074, 5, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181075, 5, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181076, 5, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181077, 5, 63246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181078, 5, 63264, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181079, 5, 63265, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181080, 5, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181081, 5, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181082, 5, 63268, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181083, 5, 63269, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181084, 5, 63270, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181085, 5, 63249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181086, 5, 63272, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181087, 5, 63273, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181088, 5, 63274, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181089, 5, 63275, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181090, 6, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181091, 6, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181092, 6, 63278, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181093, 6, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181094, 6, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181095, 6, 63281, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181096, 6, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181097, 6, 63283, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181098, 6, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181099, 6, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181100, 6, 63249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181101, 7, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181102, 7, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181103, 7, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181104, 7, 63278, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181105, 7, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181106, 7, 63281, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181107, 7, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181108, 7, 63283, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181109, 7, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181110, 7, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181111, 7, 63249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181112, 8, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181113, 8, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181114, 8, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181115, 8, 63278, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181116, 8, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181117, 8, 63281, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181118, 8, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181119, 8, 63283, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181120, 8, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181121, 8, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181122, 8, 63249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181123, 10, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181124, 10, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181125, 10, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181126, 10, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181127, 10, 63246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181128, 10, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181129, 10, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181130, 10, 63268, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181131, 10, 63249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181132, 10, 63274, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181133, 10, 63319, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181134, 10, 63275, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181135, 10, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181136, 11, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181137, 11, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181138, 11, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181139, 11, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181140, 11, 63246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181141, 11, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181142, 11, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181143, 11, 63268, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181144, 11, 63249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181145, 11, 63274, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181146, 11, 63319, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181147, 11, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181148, 11, 63275, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181149, 12, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181150, 12, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181151, 12, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181152, 12, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181153, 12, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181154, 12, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181155, 12, 63341, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181156, 13, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181157, 13, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181158, 13, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181159, 13, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181160, 13, 63281, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181161, 13, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181162, 13, 63348, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181163, 14, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181164, 14, 63350, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181165, 14, 63351, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181166, 14, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181167, 14, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181168, 14, 63246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181169, 14, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181170, 14, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181171, 14, 63357, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181172, 14, 63358, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181173, 14, 63359, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181174, 14, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181175, 15, 63361, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181176, 15, 63362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181177, 15, 63363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181178, 15, 63364, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181179, 15, 63365, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181180, 15, 63285, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181181, 15, 63280, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181182, 15, 63368, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181183, 15, 63275, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181184, 15, 63321, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181185, 15, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181186, 15, 63372, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181187, 16, 63361, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181188, 16, 63362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181189, 16, 63375, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181190, 16, 63365, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181191, 16, 63377, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181192, 16, 63363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181193, 16, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181194, 16, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181195, 16, 63371, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181196, 16, 63382, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181197, 16, 63383, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181198, 17, 63361, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181199, 17, 63362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181200, 17, 63386, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181201, 17, 63375, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181202, 17, 63365, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181203, 17, 63377, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181204, 17, 63390, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181205, 17, 63285, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181206, 17, 63392, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181207, 17, 63280, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181208, 17, 63368, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181209, 17, 63395, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181210, 17, 63396, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181211, 17, 63397, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181212, 17, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181213, 17, 63399, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181214, 17, 63400, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181215, 18, 63361, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181216, 18, 63362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181217, 18, 63386, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181218, 18, 63363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181219, 18, 63364, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181220, 18, 63390, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181221, 18, 63285, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181222, 18, 63280, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181223, 18, 63368, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181224, 18, 63395, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181225, 18, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181226, 18, 63399, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181227, 19, 63361, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181228, 19, 63362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181229, 19, 63363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181230, 19, 63364, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181231, 19, 63365, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181232, 19, 63285, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181233, 19, 63280, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181234, 19, 63368, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181235, 19, 63275, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181236, 19, 63321, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181237, 19, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181238, 19, 63372, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181239, 20, 63361, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181240, 20, 63362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181241, 20, 63363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181242, 20, 63364, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181243, 20, 63365, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181244, 20, 63285, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181245, 20, 63368, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181246, 20, 63321, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181247, 20, 63397, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181248, 20, 63434, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181249, 21, 63361, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181250, 21, 63362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181251, 21, 63386, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181252, 21, 63363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181253, 21, 63377, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181254, 21, 63390, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181255, 21, 63285, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181256, 21, 63280, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181257, 21, 63368, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181258, 21, 63444, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181259, 21, 63395, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181260, 21, 63365, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181262, 21, 63448, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181263, 22, 63361, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181264, 22, 63362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181265, 22, 63386, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181266, 22, 63363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181267, 22, 63377, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181268, 22, 63390, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181269, 22, 63285, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181270, 22, 63280, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181271, 22, 63368, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181272, 22, 63458, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181273, 22, 63395, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181274, 22, 63365, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181275, 22, 63461, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181276, 22, 63399, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181277, 23, 63361, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181278, 23, 63362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181279, 23, 63386, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181280, 23, 63375, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181281, 23, 63365, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181282, 23, 63377, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181283, 23, 63390, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181284, 23, 63285, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181285, 23, 63392, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181286, 23, 63280, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181287, 23, 63368, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181288, 23, 63395, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181289, 23, 63396, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181290, 23, 63397, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181291, 23, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181292, 23, 63399, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181293, 23, 63400, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181294, 24, 63361, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181295, 24, 63362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181296, 24, 63386, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181297, 24, 63377, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181298, 24, 63390, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181299, 24, 63285, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181300, 24, 63280, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181301, 24, 63368, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181302, 24, 63444, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181303, 24, 63395, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181304, 24, 63365, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181305, 24, 63363, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181306, 24, 63461, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181307, 24, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181308, 24, 63494, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181309, 24, 63399, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181310, 25, 63361, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181311, 25, 63362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181312, 25, 63375, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181313, 25, 63365, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181314, 25, 63377, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181315, 25, 63363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181316, 25, 63285, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181317, 25, 63280, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181318, 25, 63368, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181319, 25, 63505, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181320, 25, 63444, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181321, 25, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181322, 25, 63508, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181323, 26, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181324, 26, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181325, 27, 63511, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181326, 27, 63512, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181327, 28, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181328, 28, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181329, 29, 63515, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181330, 29, 63512, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181331, 30, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181332, 30, 63518, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181333, 30, 63519, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181334, 31, 63520, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181335, 31, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181336, 31, 63518, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181337, 31, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181338, 31, 63524, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181339, 31, 63525, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181340, 31, 63526, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181341, 31, 63527, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181342, 31, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181343, 31, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181344, 31, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181345, 31, 63531, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181346, 31, 63532, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181347, 31, 63533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181348, 31, 63534, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181349, 31, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181350, 31, 63536, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181351, 32, 63520, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181352, 32, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181353, 32, 63518, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181354, 32, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181355, 32, 63524, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181356, 32, 63525, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181357, 32, 63526, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181358, 32, 63527, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181359, 32, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181360, 32, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181361, 32, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181362, 32, 63531, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181363, 32, 63532, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181364, 32, 63533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181365, 32, 63534, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181366, 32, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181367, 32, 63536, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181368, 33, 63554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181369, 33, 63555, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181370, 33, 63556, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181371, 33, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181372, 33, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181373, 33, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181374, 33, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181375, 33, 63561, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181376, 33, 63562, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181377, 33, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181378, 34, 63554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181379, 34, 63555, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181380, 34, 63556, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181381, 34, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181382, 34, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181383, 34, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181384, 34, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181385, 34, 63561, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181386, 34, 63562, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181387, 34, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181388, 35, 63554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181389, 35, 63555, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181390, 35, 63576, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181391, 35, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181392, 35, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181393, 35, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181394, 35, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181395, 35, 63561, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181396, 35, 63562, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181397, 35, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181398, 36, 63554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181399, 36, 63555, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181400, 36, 63576, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181401, 36, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181402, 36, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181403, 36, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181404, 36, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181405, 36, 63591, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181406, 36, 63321, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181407, 36, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181408, 36, 63594, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181409, 36, 63595, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181410, 36, 63596, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181411, 36, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181412, 36, 63275, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181413, 37, 63554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181414, 37, 63555, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181415, 37, 63576, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181416, 37, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181417, 37, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181418, 37, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181419, 37, 63561, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181420, 37, 63595, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181421, 37, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181422, 37, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181423, 37, 63591, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181424, 37, 63321, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181425, 37, 63594, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181426, 37, 63596, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181427, 37, 63275, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181428, 38, 63554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181429, 38, 63615, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181430, 38, 63616, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181431, 38, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181432, 38, 63618, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181433, 38, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181434, 38, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181435, 38, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181436, 38, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181437, 39, 63554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181438, 39, 63555, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181439, 39, 63625, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181440, 39, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181441, 39, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181442, 39, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181443, 39, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181444, 39, 63561, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181445, 39, 63562, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181446, 39, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181447, 40, 63554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181448, 40, 63615, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181449, 40, 63635, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181450, 40, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181451, 40, 63637, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181452, 40, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181453, 40, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181454, 40, 63640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181455, 40, 63641, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181456, 40, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181457, 40, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181458, 40, 63644, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181459, 40, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181460, 40, 63561, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181461, 40, 63596, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181462, 40, 63648, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181463, 40, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181464, 40, 63650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181465, 40, 63651, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181466, 40, 63652, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181467, 41, 63554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181468, 41, 63615, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181469, 41, 63655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181470, 41, 63635, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181471, 41, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181472, 41, 63618, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181473, 41, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181474, 41, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181475, 41, 63661, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181476, 42, 63554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181477, 42, 63615, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181478, 42, 63635, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181479, 42, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181480, 42, 63637, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181481, 42, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181482, 42, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181483, 42, 63640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181484, 42, 63641, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181485, 42, 63561, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181486, 42, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181487, 42, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181488, 42, 63595, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181489, 42, 63648, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181490, 42, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181491, 42, 63650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181492, 42, 63651, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181493, 42, 63652, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181494, 43, 63554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181495, 43, 63615, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181496, 43, 63635, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181497, 43, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181498, 43, 63637, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181499, 43, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181500, 43, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181501, 43, 63640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181502, 43, 63641, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181503, 43, 63561, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181504, 43, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181505, 43, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181506, 43, 63595, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181507, 43, 63648, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181508, 43, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181509, 43, 63650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181510, 43, 63651, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181511, 43, 63652, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181512, 44, 63554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181513, 44, 63635, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181514, 44, 63615, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181515, 44, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181516, 44, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181517, 44, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181518, 44, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181519, 44, 63644, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181520, 44, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181521, 44, 63707, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181522, 45, 63708, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181523, 45, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181524, 45, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181525, 45, 63711, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181526, 45, 63558, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181527, 45, 63713, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181528, 45, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181529, 45, 63715, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181530, 45, 63716, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181531, 45, 63717, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181532, 45, 63718, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181533, 45, 63719, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181534, 45, 63536, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181535, 46, 63721, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181536, 46, 63722, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181537, 46, 63723, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181538, 47, 63724, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181539, 47, 63722, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181540, 47, 63726, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181541, 47, 63723, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181542, 48, 63721, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181543, 48, 63722, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181544, 48, 63723, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181545, 49, 63731, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181546, 49, 63732, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181547, 49, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181548, 49, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181549, 49, 63735, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181550, 49, 63736, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181551, 49, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181552, 49, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181553, 49, 63739, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181554, 49, 63740, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181555, 49, 63590, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181556, 49, 63742, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181557, 49, 63717, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181558, 49, 63744, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181559, 49, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181560, 49, 63746, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181561, 50, 63747, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181562, 50, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181563, 50, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181564, 50, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181565, 50, 63751, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181566, 50, 63752, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181567, 50, 63753, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181568, 50, 63754, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181569, 50, 63755, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181570, 50, 63756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181571, 50, 63757, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181572, 50, 63758, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181573, 50, 63759, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181574, 50, 63760, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181575, 50, 63761, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181576, 50, 63762, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181577, 50, 63763, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181578, 50, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181579, 50, 63765, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181580, 51, 63766, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181581, 51, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181582, 51, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181583, 51, 63769, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181584, 51, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181585, 51, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181586, 51, 63772, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181587, 51, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181588, 51, 63525, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181589, 51, 63775, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181590, 51, 63776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181591, 51, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181592, 51, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181593, 51, 63779, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181594, 51, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181595, 51, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181596, 51, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181597, 51, 63717, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181598, 51, 63784, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181599, 51, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181600, 51, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181601, 51, 63787, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181602, 51, 63788, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181603, 51, 63789, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181604, 51, 63790, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181605, 51, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181606, 51, 63792, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181607, 51, 63793, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181608, 51, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181609, 51, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181610, 51, 63796, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181611, 52, 63747, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181612, 52, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181613, 52, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181614, 52, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181615, 52, 63752, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181616, 52, 63751, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181617, 52, 63753, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181618, 52, 63804, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181619, 52, 63805, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181620, 52, 63756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181621, 52, 63757, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181622, 52, 63758, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181623, 52, 63759, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181624, 52, 63760, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181625, 52, 63761, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181626, 52, 63762, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181627, 52, 63763, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181628, 52, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181629, 52, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181630, 53, 63816, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181631, 53, 63817, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181632, 53, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181633, 53, 63819, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181634, 53, 63820, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181635, 53, 63821, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181636, 53, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181637, 53, 63823, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181638, 53, 63824, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181639, 53, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181640, 53, 63826, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181641, 53, 63827, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181642, 53, 63828, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181643, 53, 63829, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181644, 53, 63830, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181645, 53, 63831, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181646, 53, 63832, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181647, 53, 63758, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181648, 53, 63757, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181649, 53, 63835, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181650, 53, 63759, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181651, 53, 63760, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181652, 53, 63761, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181653, 53, 63763, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181654, 53, 63762, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181655, 53, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181656, 53, 63765, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181657, 54, 63747, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181658, 54, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181659, 54, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181660, 54, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181661, 54, 63751, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181662, 54, 63752, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181663, 54, 63753, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181664, 54, 63804, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181665, 54, 63805, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181666, 54, 63756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181667, 54, 63757, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181668, 54, 63758, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181669, 54, 63759, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181670, 54, 63760, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181671, 54, 63761, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181672, 54, 63762, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181673, 54, 63763, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181674, 54, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181675, 54, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181676, 55, 63862, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181677, 55, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181678, 55, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181679, 55, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181680, 55, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181681, 55, 63769, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181682, 55, 63868, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181683, 55, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181684, 55, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181685, 55, 63871, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181686, 55, 63829, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181687, 55, 63776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181688, 55, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181689, 55, 63775, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181690, 55, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181691, 55, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181692, 55, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181693, 55, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181694, 55, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181695, 55, 63881, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181696, 55, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181697, 55, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181698, 55, 63884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181699, 55, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181700, 55, 63886, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181701, 55, 63887, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181702, 55, 63561, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181703, 55, 63789, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181704, 55, 63890, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181705, 55, 63784, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181706, 55, 63590, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181707, 55, 63893, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181708, 55, 63894, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181709, 56, 63895, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181710, 56, 63896, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181711, 56, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181712, 56, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181713, 56, 63899, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181714, 56, 63769, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181715, 56, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181716, 56, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181717, 56, 63903, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181718, 56, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181719, 56, 63776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181720, 56, 63906, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181721, 56, 63907, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181722, 56, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181723, 56, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181724, 56, 63910, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181725, 56, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181726, 56, 63912, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181727, 56, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181728, 56, 63914, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181729, 56, 63915, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181730, 56, 63796, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181731, 57, 63817, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181732, 57, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181733, 57, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181734, 57, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181735, 57, 63921, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181736, 57, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181737, 57, 63755, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181738, 57, 63752, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181739, 57, 63751, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181740, 57, 63753, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181741, 57, 63754, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181742, 57, 63756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181743, 57, 63757, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181744, 57, 63758, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181745, 57, 63759, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181746, 57, 63760, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181747, 57, 63761, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181748, 57, 63762, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181749, 57, 63763, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181750, 57, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181751, 57, 63765, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181752, 58, 63816, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181753, 58, 63817, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181754, 58, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181755, 58, 63819, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181756, 58, 63820, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181757, 58, 63821, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181758, 58, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181759, 58, 63823, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181760, 58, 63824, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181761, 58, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181762, 58, 63755, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181763, 58, 63826, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181764, 58, 63827, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181765, 58, 63828, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181766, 58, 63831, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181767, 58, 63832, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181768, 58, 63829, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181769, 58, 63758, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181770, 58, 63757, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181771, 58, 63835, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181772, 58, 63759, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181773, 58, 63760, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181774, 58, 63761, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181775, 58, 63763, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181776, 58, 63762, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181777, 58, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181778, 58, 63964, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181779, 59, 63965, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181780, 59, 63966, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181781, 59, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181782, 60, 63965, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181783, 61, 63965, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181784, 62, 63965, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181785, 63, 63965, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181786, 63, 63966, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181787, 63, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181788, 64, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181789, 64, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181790, 64, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181791, 64, 63977, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181792, 64, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181793, 64, 63979, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181794, 64, 63980, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181795, 64, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181796, 64, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181797, 64, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181798, 64, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181799, 64, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181800, 65, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181801, 65, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181802, 65, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181803, 65, 63977, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181804, 65, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181805, 65, 63979, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181806, 65, 63980, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181807, 65, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181808, 65, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181809, 65, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181810, 65, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181811, 65, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181812, 66, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181813, 66, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181814, 66, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181815, 66, 63977, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181816, 66, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181817, 66, 63979, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181818, 66, 63980, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181819, 66, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181820, 66, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181821, 66, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181822, 66, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181823, 66, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181824, 67, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181825, 67, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181826, 67, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181827, 67, 63977, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181828, 67, 63979, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181829, 67, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181830, 67, 64016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181831, 67, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181832, 67, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181833, 67, 64019, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181834, 67, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181835, 67, 64021, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181836, 67, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181837, 68, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181838, 68, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181839, 68, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181840, 68, 64026, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181841, 68, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181842, 68, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181843, 68, 64029, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181844, 68, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181845, 68, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181846, 68, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181847, 68, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181848, 69, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181849, 69, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181850, 69, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181851, 69, 63977, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181852, 69, 64038, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181853, 69, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181854, 69, 63979, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181855, 69, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181856, 69, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181857, 69, 64043, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181858, 69, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181859, 69, 64021, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181860, 69, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181861, 70, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181862, 70, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181863, 70, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181864, 70, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181865, 70, 64051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181866, 70, 64052, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181867, 70, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181868, 70, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181869, 70, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181870, 70, 64056, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181871, 70, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181872, 70, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181873, 70, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181874, 70, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181875, 70, 64061, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181876, 70, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181877, 70, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181878, 70, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181879, 71, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181880, 71, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181881, 71, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181882, 71, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181883, 71, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181884, 71, 64070, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181885, 71, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181886, 71, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181887, 71, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181888, 71, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181889, 72, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181890, 72, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181891, 72, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181892, 72, 63977, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181893, 72, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181894, 72, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181895, 72, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181896, 73, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181897, 73, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181898, 73, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181899, 73, 63977, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181900, 73, 63979, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181901, 73, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181902, 73, 64016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181903, 73, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181904, 73, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181905, 73, 64019, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181906, 73, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181907, 73, 64021, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181908, 73, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181909, 74, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181910, 74, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181911, 74, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181912, 74, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181913, 74, 64099, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181914, 74, 64100, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181915, 74, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181916, 74, 64102, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181917, 74, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181918, 74, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181919, 74, 64105, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181920, 74, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181921, 74, 64107, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181922, 74, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181923, 74, 64109, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181924, 74, 64110, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181925, 74, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181926, 74, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181927, 74, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181928, 75, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181929, 75, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181930, 75, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181931, 75, 63977, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181932, 75, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181933, 75, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181934, 75, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181935, 75, 64109, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181936, 75, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181937, 75, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181938, 75, 64124, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181939, 75, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181940, 76, 64126, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181941, 76, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181942, 76, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181943, 76, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181944, 76, 64130, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181945, 76, 64131, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181946, 76, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181947, 76, 64133, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181948, 76, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181949, 76, 64135, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181950, 76, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181951, 76, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181952, 76, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181953, 77, 64139, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181954, 77, 64140, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181955, 77, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181956, 77, 64142, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181957, 77, 64143, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181958, 77, 64144, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181959, 77, 64145, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181960, 77, 64146, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181961, 77, 64147, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181962, 77, 64148, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181963, 77, 64149, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181964, 77, 64150, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181965, 77, 64151, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181966, 77, 64152, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181967, 77, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181968, 77, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181969, 77, 64155, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181970, 77, 64156, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181971, 77, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181972, 77, 64158, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181973, 77, 64159, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181974, 77, 63526, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181975, 77, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181976, 77, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181977, 77, 64163, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181978, 77, 64164, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181979, 78, 64165, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181980, 78, 64166, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181981, 78, 64167, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181982, 78, 63709, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181983, 78, 64169, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181984, 78, 64170, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181985, 78, 64171, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181986, 78, 64147, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181987, 78, 64173, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181988, 78, 64150, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181989, 78, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181990, 78, 64152, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181991, 78, 64177, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181992, 78, 64178, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181993, 78, 64179, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181994, 78, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181995, 78, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181996, 78, 64182, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181997, 78, 64183, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181998, 78, 64158, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (181999, 78, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182000, 79, 64139, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182001, 79, 64167, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182002, 79, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182003, 79, 64189, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182004, 79, 64190, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182005, 79, 64191, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182006, 79, 64192, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182007, 79, 64151, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182008, 79, 64194, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182009, 79, 64195, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182010, 79, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182011, 79, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182012, 79, 64198, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182013, 79, 64158, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182014, 79, 64152, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182015, 79, 63640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182016, 79, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182017, 79, 63526, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182018, 79, 63782, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182019, 79, 64205, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182020, 79, 64206, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182021, 79, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182022, 79, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182023, 79, 64209, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182024, 79, 64164, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182025, 79, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182026, 80, 64212, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182027, 80, 64213, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182028, 80, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182029, 80, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182030, 80, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182031, 80, 64217, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182032, 80, 63526, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182033, 80, 63311, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182034, 80, 63535, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182035, 80, 63510, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182036, 81, 64222, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182037, 81, 64223, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182038, 81, 64224, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182039, 81, 64225, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182040, 81, 64226, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182041, 82, 64222, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182042, 82, 64223, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182043, 82, 64224, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182044, 82, 64225, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182045, 82, 64226, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182046, 83, 64232, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182047, 83, 64223, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182048, 83, 64224, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182049, 83, 64225, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182050, 83, 64226, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182051, 84, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182052, 84, 63713, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182053, 84, 64051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182054, 84, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182055, 84, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182056, 84, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182057, 84, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182058, 84, 64244, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182059, 84, 64245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182060, 84, 64246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182061, 84, 63525, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182062, 84, 64248, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182063, 84, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182064, 84, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182065, 84, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182066, 84, 64152, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182067, 85, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182068, 85, 63713, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182069, 85, 64051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182070, 85, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182071, 85, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182072, 85, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182073, 85, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182074, 85, 64244, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182075, 85, 64245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182076, 85, 64246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182077, 85, 63525, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182078, 85, 64248, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182079, 85, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182080, 85, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182081, 85, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182082, 85, 64152, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182083, 86, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182084, 86, 63713, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182085, 86, 64051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182086, 86, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182087, 86, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182088, 86, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182089, 86, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182090, 86, 64244, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182091, 86, 64245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182092, 86, 64246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182093, 86, 63525, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182094, 86, 64248, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182095, 86, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182096, 86, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182097, 86, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182098, 86, 64152, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182099, 87, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182100, 87, 63713, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182101, 87, 64051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182102, 87, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182103, 87, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182104, 87, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182105, 87, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182106, 87, 64244, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182107, 87, 64245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182108, 87, 64246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182109, 87, 63525, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182110, 87, 64248, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182111, 87, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182112, 87, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182113, 87, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182114, 87, 64152, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182115, 88, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182116, 88, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182117, 88, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182118, 88, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182119, 88, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182120, 88, 64306, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182121, 89, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182122, 89, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182123, 89, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182124, 89, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182125, 89, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182126, 89, 64306, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182127, 90, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182128, 90, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182129, 90, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182130, 90, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182131, 90, 64317, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182132, 90, 64318, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182133, 91, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182134, 91, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182135, 91, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182136, 91, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182137, 91, 64317, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182138, 91, 63269, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182139, 91, 63357, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182140, 92, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182141, 92, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182142, 92, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182143, 92, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182144, 92, 64317, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182145, 92, 64331, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182146, 93, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182147, 93, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182148, 93, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182149, 93, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182150, 93, 64306, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182151, 94, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182152, 94, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182153, 94, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182154, 94, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182155, 94, 64341, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182156, 95, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182157, 95, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182158, 95, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182159, 95, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182160, 95, 64346, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182161, 96, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182162, 96, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182163, 96, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182164, 96, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182165, 96, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182166, 96, 64352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182167, 96, 64317, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182168, 97, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182169, 97, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182170, 97, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182171, 97, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182172, 97, 64358, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182173, 97, 64359, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182174, 98, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182175, 98, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182176, 98, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182177, 98, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182178, 98, 64317, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182179, 98, 63269, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182180, 98, 63357, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182181, 99, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182182, 99, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182183, 99, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182184, 99, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182185, 99, 64317, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182186, 99, 64372, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182187, 100, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182188, 100, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182189, 100, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182190, 100, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182191, 100, 64306, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182192, 101, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182193, 101, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182194, 101, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182195, 101, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182196, 101, 64317, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182197, 101, 64383, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182198, 102, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182199, 102, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182200, 102, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182201, 102, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182202, 102, 64317, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182203, 102, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182204, 103, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182205, 103, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182206, 103, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182207, 103, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182208, 103, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182209, 103, 64317, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182210, 103, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182211, 104, 64301, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182212, 104, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182213, 104, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182214, 104, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182215, 104, 64317, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182216, 104, 64402, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182217, 105, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182218, 105, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182219, 105, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182220, 105, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182221, 105, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182222, 105, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182223, 106, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182224, 106, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182225, 106, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182226, 106, 64412, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182227, 106, 64413, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182228, 106, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182229, 106, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182230, 106, 64416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182231, 106, 63275, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182232, 107, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182233, 107, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182234, 107, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182235, 107, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182236, 107, 64413, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182237, 107, 64416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182238, 107, 64424, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182239, 107, 64425, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182240, 107, 63269, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182241, 107, 63275, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182242, 107, 64428, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182243, 108, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182244, 108, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182245, 108, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182246, 108, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182247, 108, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182248, 108, 64102, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182249, 108, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182250, 108, 63650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182251, 108, 64437, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182252, 109, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182253, 109, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182254, 109, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182255, 109, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182256, 109, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182257, 109, 64443, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182258, 109, 64444, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182259, 109, 64445, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182260, 109, 64102, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182261, 109, 64038, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182262, 109, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182263, 109, 63650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182264, 109, 64450, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182265, 109, 63984, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182266, 109, 63985, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182267, 110, 64453, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182268, 110, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182269, 110, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182270, 110, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182271, 111, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182272, 111, 63518, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182273, 111, 63247, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182274, 111, 63890, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182275, 112, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182276, 112, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182277, 112, 63272, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182278, 112, 64464, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182279, 112, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182280, 112, 64466, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182281, 112, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182282, 112, 64468, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182283, 112, 64162, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182284, 112, 64470, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182285, 112, 64471, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182286, 112, 64472, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182287, 112, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182288, 112, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182289, 112, 64475, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182290, 113, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182291, 113, 64477, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182292, 113, 64478, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182293, 113, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182294, 113, 63272, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182295, 113, 64464, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182296, 113, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182297, 113, 64468, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182298, 113, 64470, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182299, 113, 64471, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182300, 113, 64472, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182301, 113, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182302, 113, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182303, 113, 64475, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182304, 114, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182305, 114, 64477, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182306, 114, 64478, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182307, 114, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182308, 114, 63272, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182309, 114, 64464, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182310, 114, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182311, 114, 64468, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182312, 114, 64470, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182313, 114, 64471, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182314, 114, 64472, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182315, 114, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182316, 114, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182317, 114, 64475, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182318, 115, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182319, 115, 64477, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182320, 115, 64478, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182321, 115, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182322, 115, 63272, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182323, 115, 64509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182324, 115, 64510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182325, 115, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182326, 115, 64464, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182327, 115, 64468, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182328, 115, 64470, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182329, 115, 64471, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182330, 115, 64472, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182331, 115, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182332, 115, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182333, 115, 64475, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182334, 116, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182335, 116, 64521, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182336, 116, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182337, 116, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182338, 116, 64524, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182339, 116, 63249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182340, 117, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182341, 117, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182342, 117, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182343, 117, 63494, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182344, 117, 64524, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182345, 117, 63249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182346, 118, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182347, 118, 64533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182348, 118, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182349, 118, 64535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182350, 118, 63753, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182351, 118, 64537, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182352, 118, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182353, 118, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182354, 118, 64540, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182355, 118, 64541, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182356, 118, 64542, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182357, 118, 64543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182358, 118, 64162, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182359, 118, 64545, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182360, 119, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182361, 119, 64533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182362, 119, 64548, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182363, 119, 64549, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182364, 119, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182365, 119, 64551, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182366, 119, 63753, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182367, 119, 64540, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182368, 119, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182369, 119, 63778, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182370, 119, 64541, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182371, 119, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182372, 119, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182373, 119, 64543, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182374, 120, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182375, 120, 64533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182376, 120, 64562, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182377, 120, 63753, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182378, 120, 64564, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182379, 120, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182380, 120, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182381, 120, 64540, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182382, 120, 64568, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182383, 120, 63778, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182384, 120, 64541, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182385, 120, 64571, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182386, 120, 63352, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182387, 120, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182388, 120, 64574, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182389, 120, 64543, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182390, 120, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182391, 120, 64577, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182392, 120, 64578, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182393, 121, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182394, 121, 64533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182395, 121, 64581, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182396, 121, 64548, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182397, 121, 64583, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182398, 121, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182399, 121, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182400, 121, 64540, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182401, 121, 63778, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182402, 121, 64541, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182403, 121, 64543, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182404, 121, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182405, 121, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182406, 121, 64571, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182407, 121, 64545, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182408, 122, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182409, 122, 64533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182410, 122, 64548, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182411, 122, 64597, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182412, 122, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182413, 122, 63753, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182414, 122, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182415, 122, 64540, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182416, 122, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182417, 122, 64310, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182418, 122, 63268, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182419, 122, 63778, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182420, 122, 64541, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182421, 122, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182422, 122, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182423, 122, 64609, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182424, 123, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182425, 123, 64533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182426, 123, 64548, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182427, 123, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182428, 123, 64549, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182429, 123, 64615, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182430, 123, 64616, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182431, 123, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182432, 123, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182433, 123, 63778, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182434, 123, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182435, 123, 64543, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182436, 124, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182437, 124, 64533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182438, 124, 64624, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182439, 124, 64625, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182440, 124, 64597, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182441, 124, 63753, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182442, 124, 64628, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182443, 124, 64540, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182444, 124, 63778, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182445, 124, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182446, 124, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182447, 124, 64541, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182448, 124, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182449, 124, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182450, 124, 64543, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182451, 124, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182452, 124, 64638, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182453, 124, 63268, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182454, 124, 64640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182455, 124, 64641, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182456, 124, 64574, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182457, 124, 64643, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182458, 125, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182459, 125, 64533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182460, 125, 64624, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182461, 125, 64647, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182462, 125, 63753, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182463, 125, 64628, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182464, 125, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182465, 125, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182466, 125, 64616, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182467, 125, 64543, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182468, 125, 64654, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182469, 125, 64541, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182470, 125, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182471, 126, 64657, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182472, 126, 64658, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182473, 126, 64659, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182474, 126, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182475, 126, 63268, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182476, 126, 64638, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182477, 126, 64663, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182478, 127, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182479, 127, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182480, 127, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182481, 127, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182482, 127, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182483, 127, 64669, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182484, 127, 64670, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182485, 127, 64671, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182486, 127, 64672, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182487, 127, 64038, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182488, 127, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182489, 128, 64675, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182490, 128, 64676, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182491, 128, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182492, 128, 64678, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182493, 128, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182494, 128, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182495, 129, 64675, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182496, 129, 64676, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182497, 129, 64683, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182498, 129, 64684, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182499, 129, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182500, 129, 64678, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182501, 129, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182502, 129, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182503, 130, 64675, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182504, 130, 64676, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182505, 130, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182506, 130, 64692, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182507, 130, 64693, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182508, 130, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182509, 130, 64678, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182510, 130, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182511, 131, 64675, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182512, 131, 64698, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182513, 131, 64699, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182514, 131, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182515, 131, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182516, 131, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182517, 131, 64678, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182518, 132, 64675, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182519, 132, 64676, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182520, 132, 64706, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182521, 132, 64707, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182522, 132, 64708, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182523, 132, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182524, 132, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182525, 132, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182526, 132, 64678, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182527, 133, 64675, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182528, 133, 64676, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182529, 133, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182530, 133, 64716, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182531, 133, 64717, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182532, 133, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182533, 133, 64719, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182535, 133, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182536, 133, 64678, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182537, 134, 64723, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182538, 135, 64724, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182539, 135, 64725, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182540, 135, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182541, 135, 63776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182542, 135, 64728, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182543, 135, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182544, 135, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182545, 135, 64731, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182546, 135, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182547, 136, 64724, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182548, 136, 64725, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182549, 136, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182550, 136, 63776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182551, 136, 64728, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182552, 136, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182553, 136, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182554, 136, 64731, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182555, 136, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182556, 137, 64724, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182557, 137, 64725, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182558, 137, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182559, 137, 63776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182560, 137, 64728, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182561, 137, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182562, 137, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182563, 137, 64731, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182564, 137, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182565, 138, 64751, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182566, 138, 64752, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182567, 138, 64753, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182568, 138, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182569, 138, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182570, 139, 64756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182571, 139, 64757, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182572, 139, 64716, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182573, 139, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182574, 139, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182575, 139, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182576, 139, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182577, 139, 64763, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182578, 139, 64764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182579, 139, 63884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182580, 139, 64195, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182581, 139, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182582, 139, 64768, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182583, 139, 64038, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182584, 140, 64770, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182585, 141, 64771, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182586, 142, 64772, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182587, 143, 64773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182588, 144, 63241, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182589, 144, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182590, 144, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182591, 144, 64777, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182592, 144, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182593, 144, 64779, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182594, 144, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182595, 144, 64781, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182596, 144, 64782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182597, 144, 63319, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182598, 144, 64784, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182599, 144, 64785, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182600, 144, 64786, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182601, 145, 63241, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182602, 145, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182603, 145, 64789, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182604, 145, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182605, 145, 63518, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182606, 145, 64779, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182607, 145, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182608, 145, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182609, 145, 64795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182610, 145, 64782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182611, 145, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182612, 145, 63268, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182613, 145, 64799, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182614, 145, 64800, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182615, 145, 64801, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182616, 145, 64471, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182617, 145, 64803, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182618, 145, 64804, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182619, 145, 64805, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182620, 145, 64806, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182621, 145, 64807, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182622, 146, 63241, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182623, 146, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182624, 146, 64810, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182625, 146, 64811, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182626, 146, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182627, 146, 64813, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182628, 146, 64814, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182629, 146, 64782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182630, 146, 64779, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182631, 146, 64817, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182632, 146, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182633, 146, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182634, 146, 63272, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182635, 146, 63319, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182636, 146, 64822, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182637, 146, 64786, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182638, 146, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182639, 147, 63241, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182640, 147, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182641, 147, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182642, 147, 64811, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182643, 147, 64829, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182644, 147, 64830, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182646, 147, 64832, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182647, 147, 64782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182648, 147, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182649, 147, 64835, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182650, 147, 64803, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182651, 147, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182652, 147, 63526, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182653, 147, 64779, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182654, 147, 64840, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182655, 147, 64841, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182656, 147, 64842, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182657, 148, 63241, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182658, 148, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182659, 148, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182660, 148, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182661, 148, 64782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182662, 148, 64848, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182663, 148, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182664, 148, 64850, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182665, 148, 64786, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182666, 148, 63319, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182667, 148, 64853, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182668, 149, 63241, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182669, 149, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182670, 149, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182671, 149, 64857, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182672, 149, 64777, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182673, 149, 64779, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182674, 149, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182675, 149, 64782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182676, 149, 64412, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182677, 149, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182678, 149, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182679, 149, 63272, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182680, 149, 64866, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182681, 149, 63268, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182682, 149, 64804, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182683, 149, 64786, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182684, 150, 63241, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182685, 150, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182686, 150, 64789, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182687, 150, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182688, 150, 63518, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182689, 150, 64779, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182690, 150, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182691, 150, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182692, 150, 64782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182693, 150, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182694, 150, 64880, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182695, 150, 64850, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182696, 151, 64882, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182697, 151, 64883, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182698, 151, 64884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182699, 151, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182700, 151, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182701, 151, 64887, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182702, 151, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182703, 151, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182704, 151, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182705, 151, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182706, 151, 64892, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182707, 151, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182708, 151, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182709, 151, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182710, 152, 64882, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182711, 152, 64883, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182712, 152, 64898, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182713, 152, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182714, 152, 64900, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182715, 152, 64901, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182716, 152, 64902, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182717, 152, 64903, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182718, 152, 64904, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182719, 152, 64905, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182720, 152, 63884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182721, 152, 64907, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182722, 152, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182723, 153, 64882, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182724, 153, 64883, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182725, 153, 64911, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182726, 153, 64912, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182727, 153, 64913, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182728, 153, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182729, 153, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182730, 153, 64916, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182731, 153, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182732, 154, 64882, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182733, 154, 64883, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182734, 154, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182735, 154, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182736, 154, 64922, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182737, 154, 63742, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182738, 154, 64924, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182739, 154, 64925, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182740, 154, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182741, 154, 64927, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182742, 154, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182743, 154, 64892, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182744, 154, 63590, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182745, 154, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182746, 154, 64932, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182747, 155, 64882, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182748, 155, 64883, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182749, 155, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182750, 155, 63742, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182751, 155, 64937, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182752, 155, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182753, 155, 64924, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182754, 155, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182755, 155, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182756, 155, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182757, 155, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182758, 155, 64892, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182759, 156, 64882, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182760, 156, 64883, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182761, 156, 64947, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182762, 156, 64948, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182763, 156, 64038, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182764, 156, 64950, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182765, 156, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182766, 156, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182767, 157, 64882, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182768, 157, 64883, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182769, 157, 64947, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182770, 157, 64956, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182771, 157, 63775, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182772, 157, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182773, 157, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182774, 157, 64195, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182775, 157, 64038, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182776, 158, 64882, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182777, 158, 64883, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182778, 158, 64884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182779, 158, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182780, 158, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182781, 158, 64887, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182782, 158, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182783, 158, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182784, 158, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182785, 158, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182786, 158, 64892, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182787, 158, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182788, 158, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182789, 158, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182790, 159, 64882, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182791, 159, 64883, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182792, 159, 64911, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182793, 159, 64912, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182794, 159, 64913, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182795, 159, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182796, 159, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182797, 159, 64916, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182798, 159, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182799, 160, 64882, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182800, 160, 64883, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182801, 160, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182802, 160, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182803, 160, 64922, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182804, 160, 63742, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182805, 160, 64924, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182806, 160, 64925, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182807, 160, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182808, 160, 64927, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182809, 160, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182810, 160, 64892, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182811, 160, 63590, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182812, 160, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182813, 160, 64932, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182814, 161, 64882, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182815, 161, 64883, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182816, 161, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182817, 161, 63742, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182818, 161, 64937, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182819, 161, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182820, 161, 64924, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182821, 161, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182822, 161, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182823, 161, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182824, 161, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182825, 161, 64892, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182826, 162, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182827, 162, 65013, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182828, 162, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182829, 162, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182830, 162, 65016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182831, 162, 64412, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182832, 162, 65018, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182833, 162, 65019, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182834, 162, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182835, 162, 65021, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182836, 163, 64770, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182837, 164, 63515, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182838, 164, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182839, 164, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182840, 165, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182841, 165, 65027, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182842, 166, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182843, 166, 63518, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182844, 166, 63519, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182845, 167, 63515, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182846, 167, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182847, 167, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182848, 168, 65034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182849, 169, 65035, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182850, 169, 65036, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182851, 169, 65037, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182852, 169, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182853, 169, 65039, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182854, 169, 65040, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182855, 169, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182856, 169, 65042, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182857, 169, 65043, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182858, 169, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182859, 169, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182860, 169, 65046, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182861, 169, 63790, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182862, 169, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182863, 169, 65049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182864, 169, 65050, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182865, 169, 65051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182866, 169, 63533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182867, 169, 65053, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182868, 169, 65054, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182869, 169, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182870, 169, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182871, 170, 65035, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182872, 170, 65036, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182873, 170, 65059, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182874, 170, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182875, 170, 65061, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182876, 170, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182877, 170, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182878, 170, 65046, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182879, 170, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182880, 170, 65066, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182881, 170, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182882, 170, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182883, 170, 65049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182884, 170, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182885, 170, 65050, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182886, 170, 65051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182887, 170, 63533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182888, 170, 63886, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182889, 170, 65053, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182890, 170, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182891, 170, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182892, 170, 65054, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182893, 171, 65035, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182894, 171, 65036, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182895, 171, 65037, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182896, 171, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182897, 171, 65039, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182898, 171, 65040, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182899, 171, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182900, 171, 65042, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182901, 171, 65043, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182902, 171, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182903, 171, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182904, 171, 65046, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182905, 171, 63790, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182906, 171, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182907, 171, 65049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182908, 171, 65050, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182909, 171, 65051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182910, 171, 63533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182911, 171, 65053, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182912, 171, 65054, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182913, 171, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182914, 171, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182915, 172, 65035, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182916, 172, 65036, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182917, 172, 65059, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182918, 172, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182919, 172, 65061, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182920, 172, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182921, 172, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182922, 172, 65046, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182923, 172, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182924, 172, 65066, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182925, 172, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182926, 172, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182927, 172, 65049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182928, 172, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182929, 172, 65050, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182930, 172, 65051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182931, 172, 63533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182932, 172, 63886, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182933, 172, 65053, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182934, 172, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182935, 172, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182936, 172, 65054, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182937, 173, 65035, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182938, 173, 65036, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182939, 173, 65059, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182940, 173, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182941, 173, 65061, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182942, 173, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182943, 173, 65042, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182944, 173, 65043, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182945, 173, 65040, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182946, 173, 65046, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182947, 173, 65039, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182948, 173, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182949, 173, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182950, 173, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182951, 173, 63790, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182952, 173, 65049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182953, 173, 65050, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182954, 173, 65051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182955, 173, 65141, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182956, 173, 63533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182957, 173, 65053, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182958, 173, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182959, 173, 65054, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182960, 173, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182961, 173, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182962, 173, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182963, 174, 65149, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182964, 174, 65150, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182965, 174, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182966, 174, 65051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182967, 174, 64026, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182968, 174, 63533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182969, 174, 65053, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182970, 174, 65156, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182971, 174, 65042, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182972, 174, 65043, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182973, 174, 65159, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182974, 174, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182975, 174, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182976, 174, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182977, 174, 65039, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182978, 174, 65164, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182979, 174, 65054, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182980, 174, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182981, 174, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182982, 175, 65149, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182983, 175, 65150, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182984, 175, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182985, 175, 65051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182986, 175, 64026, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182987, 175, 63533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182988, 175, 65053, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182989, 175, 65175, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182990, 175, 65046, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182991, 175, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182992, 175, 65159, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182993, 175, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182994, 175, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182995, 175, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182996, 175, 65066, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182997, 175, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182998, 175, 65042, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (182999, 175, 65043, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183000, 175, 65186, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183001, 175, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183002, 175, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183003, 176, 65149, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183004, 176, 65150, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183005, 176, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183006, 176, 64026, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183007, 176, 65051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183008, 176, 65194, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183009, 176, 65053, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183010, 176, 65175, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183011, 176, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183012, 176, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183013, 176, 65159, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183014, 176, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183015, 176, 65042, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183016, 176, 65043, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183017, 176, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183018, 176, 65204, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183019, 176, 65186, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183020, 176, 65141, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183021, 176, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183022, 176, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183023, 176, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183024, 176, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183025, 177, 65149, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183026, 177, 65150, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183027, 177, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183028, 177, 65051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183029, 177, 64026, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183030, 177, 63533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183031, 177, 65053, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183032, 177, 65218, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183034, 177, 65220, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183035, 177, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183036, 177, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183037, 177, 65223, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183038, 177, 65049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183039, 177, 65042, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183040, 177, 65043, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183041, 177, 63790, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183042, 177, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183043, 177, 64162, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183044, 177, 65054, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183045, 177, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183046, 177, 63881, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183047, 177, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183048, 177, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183049, 178, 65235, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183050, 178, 63821, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183051, 178, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183052, 178, 65238, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183053, 178, 65239, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183054, 178, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183055, 178, 65241, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183056, 178, 65242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183057, 178, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183058, 178, 65013, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183059, 178, 65245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183060, 178, 65246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183061, 178, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183062, 178, 64016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183063, 178, 65249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183064, 178, 65250, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183065, 178, 65251, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183066, 178, 65252, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183067, 178, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183068, 178, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183069, 178, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183070, 178, 65256, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183071, 178, 65257, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183072, 178, 65258, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183073, 178, 64470, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183074, 178, 65260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183075, 178, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183076, 178, 65262, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183077, 178, 65263, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183078, 178, 65264, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183079, 178, 65265, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183080, 178, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183081, 178, 63765, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183082, 179, 65235, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183083, 179, 63821, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183084, 179, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183085, 179, 65238, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183086, 179, 65239, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183087, 179, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183088, 179, 65241, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183089, 179, 65242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183090, 179, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183091, 179, 65013, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183092, 179, 65245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183093, 179, 65246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183094, 179, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183095, 179, 64016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183096, 179, 65249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183097, 179, 65250, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183098, 179, 65251, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183099, 179, 65252, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183100, 179, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183101, 179, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183102, 179, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183103, 179, 65256, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183104, 179, 65257, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183105, 179, 65258, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183106, 179, 64470, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183107, 179, 65260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183108, 179, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183109, 179, 65262, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183110, 179, 65263, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183111, 179, 65264, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183112, 179, 65265, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183113, 179, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183114, 179, 63765, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183115, 180, 65235, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183116, 180, 63821, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183117, 180, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183118, 180, 65238, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183119, 180, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183120, 180, 65306, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183121, 180, 65242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183122, 180, 65013, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183123, 180, 65246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183124, 180, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183125, 180, 65245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183126, 180, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183127, 180, 65249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183128, 180, 65250, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183129, 180, 65251, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183130, 180, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183131, 180, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183132, 180, 65256, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183133, 180, 65257, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183134, 180, 65258, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183135, 180, 64470, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183136, 180, 65260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183137, 180, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183138, 180, 65262, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183139, 180, 65263, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183140, 180, 65264, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183141, 180, 65265, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183142, 180, 63764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183143, 180, 63765, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183144, 181, 64126, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183145, 181, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183146, 181, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183147, 181, 65333, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183148, 181, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183149, 181, 64209, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183150, 181, 64109, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183151, 181, 65337, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183152, 181, 63985, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183153, 182, 64126, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183154, 182, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183155, 182, 65250, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183156, 182, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183157, 182, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183158, 182, 65333, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183159, 182, 63533, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183160, 182, 65346, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183161, 182, 64109, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183162, 182, 63985, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183163, 183, 65349, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183164, 183, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183165, 183, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183166, 183, 63655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183167, 183, 65353, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183168, 183, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183169, 183, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183170, 183, 63903, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183171, 183, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183172, 184, 65349, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183173, 184, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183174, 184, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183175, 184, 65353, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183176, 184, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183177, 184, 63903, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183178, 184, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183179, 184, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183180, 185, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183181, 185, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183182, 185, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183183, 185, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183184, 185, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183185, 185, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183186, 186, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183187, 186, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183188, 186, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183189, 186, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183190, 186, 65376, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183191, 186, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183192, 186, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183193, 186, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183194, 187, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183195, 187, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183196, 187, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183197, 187, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183198, 187, 65376, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183199, 187, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183200, 187, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183201, 187, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183202, 188, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183203, 188, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183204, 188, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183205, 188, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183206, 188, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183207, 188, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183208, 189, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183209, 189, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183210, 189, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183211, 189, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183212, 189, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183213, 189, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183214, 190, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183215, 190, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183216, 190, 65402, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183217, 190, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183218, 190, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183219, 190, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183220, 190, 63283, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183221, 190, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183222, 190, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183223, 190, 63534, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183224, 190, 64804, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183225, 190, 63526, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183226, 190, 65412, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183227, 190, 63274, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183228, 190, 65414, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183229, 190, 65415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183230, 190, 65416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183231, 191, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183232, 191, 65418, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183233, 191, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183234, 191, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183235, 191, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183236, 191, 65422, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183237, 192, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183238, 192, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183239, 192, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183240, 192, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183241, 192, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183242, 192, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183243, 193, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183244, 193, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183245, 193, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183246, 193, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183247, 193, 65376, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183248, 193, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183249, 193, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183250, 193, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183251, 194, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183252, 194, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183253, 194, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183254, 194, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183255, 194, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183256, 194, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183257, 195, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183258, 195, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183259, 195, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183260, 195, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183261, 195, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183262, 195, 65448, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183263, 196, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183264, 196, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183265, 196, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183266, 196, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183267, 196, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183268, 196, 65376, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183269, 196, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183270, 196, 65456, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183271, 196, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183272, 197, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183273, 197, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183274, 197, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183275, 197, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183276, 197, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183277, 197, 65376, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183278, 197, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183279, 197, 65456, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183280, 197, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183281, 198, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183282, 198, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183283, 198, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183284, 198, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183285, 198, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183286, 198, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183287, 199, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183288, 199, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183289, 199, 65402, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183290, 199, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183291, 199, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183292, 199, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183293, 199, 63283, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183294, 199, 63534, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183295, 199, 65414, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183296, 199, 63269, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183297, 199, 64805, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183298, 199, 65260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183299, 199, 63275, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183300, 199, 65416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183301, 200, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183302, 200, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183303, 200, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183304, 200, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183305, 200, 65376, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183306, 200, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183307, 200, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183308, 200, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183309, 200, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183310, 201, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183311, 201, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183312, 201, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183313, 201, 63283, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183314, 201, 65376, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183315, 201, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183316, 201, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183317, 202, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183318, 202, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183319, 202, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183320, 202, 63283, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183321, 202, 65376, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183322, 202, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183323, 202, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183324, 203, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183325, 203, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183326, 203, 65402, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183327, 203, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183328, 203, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183329, 203, 63283, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183330, 203, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183331, 203, 63390, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183332, 203, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183333, 203, 64804, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183334, 203, 65520, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183335, 203, 63534, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183336, 203, 65414, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183337, 203, 63274, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183338, 203, 65415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183339, 203, 63275, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183340, 203, 65416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183341, 204, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183342, 204, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183343, 204, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183344, 204, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183345, 204, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183346, 204, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183347, 205, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183348, 205, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183349, 205, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183350, 205, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183351, 205, 65376, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183352, 205, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183353, 205, 63283, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183354, 205, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183355, 205, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183356, 206, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183357, 206, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183358, 206, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183359, 206, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183360, 206, 65376, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183361, 206, 63494, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183362, 206, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183363, 206, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183364, 206, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183365, 207, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183366, 207, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183367, 207, 63272, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183368, 207, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183369, 207, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183370, 207, 65422, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183371, 207, 65557, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183372, 207, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183373, 207, 65559, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183374, 207, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183375, 207, 63494, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183376, 207, 65562, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183377, 207, 65414, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183378, 207, 65415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183379, 207, 65565, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183380, 207, 65416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183381, 208, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183382, 208, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183383, 208, 63272, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183384, 208, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183385, 208, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183386, 208, 65422, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183387, 208, 65557, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183388, 208, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183389, 208, 65559, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183390, 208, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183391, 208, 63494, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183392, 208, 65562, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183393, 208, 65414, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183394, 208, 65415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183395, 208, 65565, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183396, 208, 65416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183397, 209, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183398, 209, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183399, 209, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183400, 209, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183401, 209, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183402, 209, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183403, 210, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183404, 210, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183405, 210, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183406, 210, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183407, 210, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183408, 210, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183409, 211, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183410, 211, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183411, 211, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183412, 211, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183413, 211, 65376, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183414, 211, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183415, 211, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183416, 211, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183417, 212, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183418, 212, 65604, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183419, 212, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183420, 212, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183421, 212, 65607, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183422, 212, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183423, 212, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183424, 212, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183425, 212, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183426, 212, 65612, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183427, 212, 65414, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183428, 212, 65415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183429, 212, 65416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183430, 213, 63515, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183431, 213, 63512, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183432, 214, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183433, 214, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183434, 214, 65620, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183435, 214, 65621, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183436, 214, 64310, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183437, 214, 65623, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183438, 214, 63829, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183439, 214, 65625, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183440, 214, 63779, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183441, 214, 65627, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183442, 214, 63532, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183443, 214, 65629, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183444, 215, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183445, 215, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183446, 215, 65620, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183447, 215, 65633, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183448, 215, 65623, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183449, 215, 64542, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183450, 215, 65627, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183451, 215, 65625, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183452, 215, 64316, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183453, 215, 63532, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183454, 215, 65640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183455, 216, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183456, 216, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183457, 216, 65620, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183458, 216, 65633, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183459, 216, 65623, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183460, 216, 64542, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183461, 216, 65627, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183462, 216, 65625, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183463, 216, 64316, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183464, 216, 63532, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183465, 216, 65640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183466, 217, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183467, 217, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183468, 217, 65620, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183469, 217, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183470, 217, 64571, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183471, 217, 65623, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183472, 217, 65633, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183473, 217, 63829, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183474, 217, 64316, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183475, 217, 64542, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183476, 217, 65627, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183477, 217, 65625, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183478, 217, 63532, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183479, 217, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183480, 217, 65640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183481, 218, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183482, 218, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183483, 218, 65620, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183484, 218, 65621, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183485, 218, 64310, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183486, 218, 65623, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183487, 218, 63829, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183488, 218, 65625, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183489, 218, 63779, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183490, 218, 65627, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183491, 218, 63532, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183492, 218, 65629, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183493, 219, 65235, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183494, 219, 65680, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183495, 219, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183496, 220, 65682, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183497, 220, 65683, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183498, 220, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183499, 220, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183500, 220, 63910, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183501, 220, 63778, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183502, 220, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183503, 220, 63890, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183504, 220, 65690, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183505, 220, 64316, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183506, 220, 63773, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183507, 220, 63780, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183508, 220, 65694, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183509, 220, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183510, 221, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183511, 221, 64764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183512, 221, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183513, 222, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183514, 222, 65700, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183515, 222, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183516, 223, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183517, 223, 64764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183518, 223, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183519, 223, 64924, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183520, 223, 64643, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183521, 223, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183522, 223, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183523, 223, 65709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183524, 223, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183525, 223, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183526, 223, 65712, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183527, 223, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183528, 223, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183529, 223, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183530, 223, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183531, 223, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183532, 223, 64542, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183533, 223, 65719, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183534, 224, 65720, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183535, 224, 65721, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183536, 224, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183537, 224, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183538, 224, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183539, 224, 65725, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183540, 224, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183541, 224, 63518, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183542, 224, 65728, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183543, 224, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183544, 224, 65730, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183545, 224, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183546, 224, 64927, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183547, 224, 65733, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183548, 224, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183549, 224, 64109, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183550, 224, 65736, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183551, 224, 65737, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183552, 224, 65738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183553, 224, 65690, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183554, 224, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183555, 224, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183556, 224, 65742, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183557, 224, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183558, 224, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183559, 224, 65745, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183560, 224, 63881, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183561, 224, 65747, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183562, 225, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183563, 225, 65700, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183564, 225, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183565, 225, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183566, 225, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183567, 225, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183568, 225, 65725, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183569, 225, 65755, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183570, 225, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183571, 225, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183572, 225, 63890, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183573, 225, 64205, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183574, 225, 65745, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183575, 225, 65712, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183576, 225, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183577, 225, 65763, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183578, 225, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183579, 225, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183580, 225, 65766, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183581, 225, 63881, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183582, 225, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183583, 225, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183584, 225, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183585, 225, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183586, 225, 64643, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183587, 225, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183588, 226, 65720, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183589, 226, 64764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183590, 226, 65776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183591, 226, 65242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183592, 226, 65778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183593, 226, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183594, 226, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183595, 226, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183596, 226, 65782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183597, 226, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183598, 226, 65712, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183599, 226, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183600, 226, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183601, 226, 64102, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183602, 226, 65788, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183603, 226, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183604, 226, 63790, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183605, 226, 65791, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183606, 226, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183607, 226, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183608, 226, 63268, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183609, 226, 65795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183610, 226, 63890, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183611, 226, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183612, 226, 65798, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183613, 227, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183614, 227, 65700, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183615, 227, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183616, 228, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183617, 228, 65803, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183618, 228, 65804, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183619, 228, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183620, 228, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183621, 228, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183622, 228, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183623, 228, 63871, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183624, 228, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183625, 228, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183626, 228, 65812, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183627, 228, 63884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183628, 228, 65755, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183629, 228, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183630, 228, 65816, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183631, 228, 64205, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183632, 228, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183633, 228, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183634, 228, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183635, 229, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183636, 229, 65700, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183637, 229, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183638, 230, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183639, 230, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183640, 230, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183641, 230, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183642, 230, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183643, 230, 63980, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183644, 230, 65830, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183645, 230, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183646, 230, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183647, 230, 64051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183648, 230, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183649, 230, 64135, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183650, 230, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183651, 230, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183652, 230, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183653, 230, 65839, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183654, 230, 65840, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183655, 230, 65841, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183656, 230, 65842, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183657, 231, 65843, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183658, 231, 65844, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183659, 231, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183660, 232, 65846, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183661, 232, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183662, 232, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183663, 232, 64616, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183664, 232, 65850, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183665, 232, 65851, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183666, 232, 65852, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183667, 232, 64102, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183668, 232, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183669, 232, 65855, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183670, 232, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183671, 232, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183672, 233, 65846, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183673, 233, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183674, 233, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183675, 233, 64616, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183676, 233, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183677, 234, 65846, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183678, 234, 65844, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183679, 234, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183680, 235, 65866, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183681, 236, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183682, 236, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183683, 236, 65869, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183684, 236, 65870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183685, 236, 65239, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183686, 236, 65872, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183687, 236, 65873, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183688, 236, 63717, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183689, 236, 65875, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183690, 236, 65876, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183691, 236, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183692, 236, 65878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183693, 236, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183694, 236, 63352, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183695, 236, 65881, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183696, 236, 65882, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183697, 236, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183698, 237, 65884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183699, 238, 65884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183700, 239, 65886, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183701, 240, 65887, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183702, 241, 65888, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183703, 241, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183704, 241, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183705, 241, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183706, 241, 63361, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183707, 241, 63717, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183708, 241, 65894, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183709, 241, 65895, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183710, 241, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183711, 241, 63890, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183712, 241, 65898, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183713, 241, 65899, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183714, 242, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183715, 242, 65872, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183716, 242, 65902, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183717, 242, 65903, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183718, 242, 65904, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183719, 242, 65878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183720, 242, 63717, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183721, 242, 65876, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183722, 242, 63509, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183723, 242, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183724, 242, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183725, 242, 65899, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183726, 242, 65846, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183727, 243, 65913, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183728, 243, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183729, 243, 65915, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183730, 243, 65904, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183731, 243, 64616, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183732, 243, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183733, 243, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183734, 243, 64316, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183735, 243, 65921, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183736, 243, 65922, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183737, 244, 65923, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183738, 244, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183739, 244, 65915, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183740, 244, 65904, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183741, 244, 63717, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183742, 244, 63509, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183743, 244, 64616, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183744, 244, 65930, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183745, 244, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183746, 244, 65932, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183747, 245, 65933, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183748, 246, 65884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183749, 247, 65884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183750, 248, 65936, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183751, 249, 65937, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183752, 250, 65938, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183753, 251, 65939, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183754, 251, 65846, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183755, 252, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183756, 252, 65872, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183757, 252, 65903, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183758, 252, 65944, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183759, 252, 65876, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183760, 252, 65946, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183761, 252, 63371, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183762, 252, 65948, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183763, 252, 65899, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183764, 252, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183765, 253, 65951, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183766, 253, 65952, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183767, 253, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183768, 253, 65954, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183769, 253, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183770, 253, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183771, 254, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183772, 254, 65872, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183773, 254, 65903, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183774, 254, 65944, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183775, 254, 65876, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183776, 254, 65946, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183777, 254, 65963, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183778, 254, 65899, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183779, 254, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183780, 255, 65951, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183781, 256, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183782, 256, 65872, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183783, 256, 65903, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183784, 256, 65970, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183785, 256, 65846, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183786, 256, 63717, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183787, 256, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183788, 256, 65946, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183789, 256, 65975, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183790, 256, 65876, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183791, 256, 65944, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183792, 256, 65904, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183793, 256, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183794, 256, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183795, 256, 65981, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183796, 256, 64316, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183797, 256, 65983, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183798, 257, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183799, 257, 65872, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183800, 257, 65903, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183801, 257, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183802, 257, 65846, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183803, 257, 63717, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183804, 257, 65990, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183805, 257, 65946, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183806, 257, 65876, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183807, 257, 65944, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183808, 257, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183809, 257, 65948, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183810, 257, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183811, 257, 65983, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183812, 257, 65899, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183813, 258, 65884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183814, 259, 66000, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183815, 259, 65846, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183816, 259, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183817, 259, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183818, 259, 66004, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183819, 259, 65903, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183820, 259, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183821, 259, 64616, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183822, 259, 66008, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183823, 260, 66009, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183824, 261, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183825, 261, 66011, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183826, 261, 63717, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183827, 261, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183828, 261, 66014, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183829, 261, 65876, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183830, 261, 66016, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183831, 261, 65944, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183832, 261, 65904, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183833, 261, 65872, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183834, 261, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183835, 261, 63260, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183836, 261, 65898, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183837, 261, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183838, 261, 63352, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183839, 261, 66025, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183840, 261, 66026, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183841, 261, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183842, 262, 66028, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183843, 262, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183844, 262, 66030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183845, 262, 64779, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183846, 263, 66032, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183847, 263, 64779, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183848, 264, 66034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183849, 264, 66035, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183850, 264, 66036, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183851, 264, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183852, 264, 63311, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183853, 264, 63280, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183854, 264, 66040, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183855, 264, 66041, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183856, 264, 65016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183857, 264, 63321, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183858, 265, 66034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183859, 265, 66045, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183860, 265, 66035, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183861, 265, 66047, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183862, 265, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183863, 265, 63311, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183864, 265, 63280, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183865, 265, 63247, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183866, 265, 66041, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183867, 265, 65016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183868, 265, 66040, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183869, 265, 63321, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183870, 266, 66034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183871, 266, 66057, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183872, 266, 66035, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183873, 266, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183874, 266, 66060, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183875, 266, 63311, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183876, 266, 63280, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183877, 266, 66041, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183878, 267, 66034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183879, 267, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183880, 267, 66066, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183881, 267, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183882, 267, 63311, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183883, 267, 63247, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183884, 267, 65016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183885, 267, 63494, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183886, 267, 66041, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183887, 267, 63321, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183888, 267, 63275, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183889, 268, 66034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183890, 268, 66045, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183891, 268, 66035, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183892, 268, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183893, 268, 66030, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183894, 268, 63280, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183895, 268, 63247, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183896, 268, 65016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183897, 268, 66041, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183898, 268, 63321, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183899, 269, 66034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183900, 269, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183901, 269, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183902, 269, 64310, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183903, 269, 63494, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183904, 269, 66041, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183905, 269, 63243, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183906, 269, 66040, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183907, 269, 63277, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183908, 269, 63247, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183909, 270, 66028, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183910, 270, 66096, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183911, 270, 66035, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183912, 270, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183913, 270, 64016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183914, 270, 63874, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183915, 270, 63530, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183916, 270, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183917, 270, 66103, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183918, 270, 63311, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183919, 270, 66105, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183920, 270, 63247, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183921, 270, 65016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183922, 271, 66028, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183923, 271, 66035, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183924, 271, 66110, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183925, 271, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183926, 271, 64016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183927, 271, 63874, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183928, 271, 63530, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183929, 271, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183930, 271, 66103, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183931, 271, 63311, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183932, 271, 66118, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183933, 271, 63247, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183934, 271, 65016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183935, 272, 66028, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183936, 272, 66035, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183937, 272, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183938, 272, 64016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183939, 272, 63874, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183940, 272, 63530, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183941, 272, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183942, 272, 66103, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183943, 272, 66030, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183944, 272, 63247, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183945, 272, 65016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183946, 273, 66032, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183947, 273, 66045, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183948, 273, 66134, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183949, 273, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183950, 273, 64016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183951, 273, 63530, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183952, 273, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183953, 273, 63311, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183954, 273, 66103, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183955, 273, 66105, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183956, 273, 63247, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183957, 273, 63494, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183958, 273, 65016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183959, 274, 66032, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183960, 274, 66134, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183961, 274, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183962, 274, 64016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183963, 274, 63530, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183964, 274, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183965, 274, 66103, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183966, 274, 66030, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183967, 274, 63247, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183968, 274, 65016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183969, 274, 63494, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183970, 275, 66032, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183971, 275, 66110, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183972, 275, 66134, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183973, 275, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183974, 275, 64016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183975, 275, 63530, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183976, 275, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183977, 275, 66103, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183978, 275, 63311, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183979, 275, 66118, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183980, 275, 63247, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183981, 275, 65016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183982, 275, 63494, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183983, 276, 66032, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183984, 276, 66066, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183985, 276, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183986, 276, 66134, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183987, 276, 64016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183988, 276, 63530, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183989, 276, 63748, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183990, 276, 63311, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183991, 276, 66103, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183992, 276, 66105, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183993, 276, 63247, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183994, 276, 65016, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183995, 276, 63494, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183996, 277, 65776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183997, 277, 66183, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183998, 277, 66184, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (183999, 277, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184000, 277, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184001, 277, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184002, 277, 66188, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184003, 277, 64470, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184004, 277, 65258, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184005, 277, 66191, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184006, 277, 65415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184007, 277, 65262, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184008, 277, 66194, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184009, 277, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184010, 277, 65265, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184011, 277, 66197, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184012, 278, 66198, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184013, 278, 65245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184014, 278, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184015, 278, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184016, 278, 66188, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184017, 278, 66203, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184018, 278, 64782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184019, 278, 66205, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184020, 278, 64470, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184021, 278, 66207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184022, 278, 66191, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184023, 278, 65415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184024, 278, 65262, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184025, 278, 66194, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184026, 278, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184027, 278, 65265, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184028, 278, 66197, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184029, 279, 66215, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184030, 279, 66216, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184031, 279, 66217, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184032, 279, 66218, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184033, 279, 66219, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184034, 279, 63723, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184035, 279, 66221, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184036, 279, 64470, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184037, 279, 65258, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184038, 279, 66191, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184039, 279, 65415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184040, 279, 65262, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184041, 279, 66194, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184042, 279, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184043, 279, 65265, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184044, 279, 66197, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184045, 280, 66198, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184046, 280, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184047, 280, 66188, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184048, 280, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184049, 280, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184050, 280, 66236, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184051, 280, 64470, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184052, 280, 66205, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184053, 280, 65415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184054, 280, 65262, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184055, 280, 66194, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184056, 280, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184057, 280, 65265, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184058, 280, 66244, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184059, 280, 66197, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184060, 281, 66246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184061, 281, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184062, 281, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184063, 281, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184064, 281, 63655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184065, 281, 66251, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184066, 281, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184067, 281, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184068, 281, 66254, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184069, 281, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184070, 281, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184071, 281, 66257, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184072, 281, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184073, 281, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184074, 282, 66246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184075, 282, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184076, 282, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184077, 282, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184078, 282, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184079, 282, 66251, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184080, 282, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184081, 282, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184082, 282, 66254, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184083, 282, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184084, 282, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184085, 282, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184086, 282, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184087, 282, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184088, 283, 66246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184089, 283, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184090, 283, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184091, 283, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184092, 283, 66251, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184093, 283, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184094, 283, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184095, 283, 66254, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184096, 283, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184097, 283, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184098, 283, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184099, 283, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184100, 283, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184101, 284, 66246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184102, 284, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184103, 284, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184104, 284, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184105, 284, 63655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184106, 284, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184107, 284, 66251, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184108, 284, 66254, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184109, 284, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184110, 284, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184111, 284, 66257, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184112, 284, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184113, 284, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184114, 285, 66246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184115, 285, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184116, 285, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184117, 285, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184118, 285, 63655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184119, 285, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184120, 285, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184121, 285, 66254, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184122, 285, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184123, 285, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184124, 285, 66310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184125, 285, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184126, 285, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184127, 286, 66313, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184128, 286, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184129, 286, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184130, 287, 66246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184131, 287, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184132, 287, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184133, 287, 64135, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184134, 287, 66320, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184135, 287, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184136, 287, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184137, 287, 66254, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184138, 287, 66324, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184139, 287, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184140, 287, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184141, 287, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184142, 288, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184143, 288, 66246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184144, 288, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184145, 288, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184146, 288, 63655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184147, 288, 64051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184148, 288, 64135, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184149, 288, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184150, 288, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184151, 288, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184152, 288, 66338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184153, 288, 66339, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184154, 289, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184155, 289, 66246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184156, 289, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184157, 289, 66343, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184158, 289, 66344, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184159, 289, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184160, 289, 66346, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184161, 289, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184162, 289, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184163, 289, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184164, 289, 63788, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184165, 289, 63790, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184166, 289, 66352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184167, 289, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184168, 289, 66354, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184169, 290, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184170, 290, 66246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184171, 290, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184172, 290, 66343, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184173, 290, 66344, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184174, 290, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184175, 290, 66346, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184176, 290, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184177, 290, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184178, 290, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184179, 290, 63788, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184180, 290, 63790, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184181, 290, 66352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184182, 290, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184183, 290, 66354, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184184, 291, 66246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184185, 291, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184186, 291, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184187, 291, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184188, 291, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184189, 291, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184190, 291, 66251, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184191, 291, 66377, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184192, 291, 66254, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184193, 291, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184194, 291, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184195, 291, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184196, 291, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184197, 291, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184198, 292, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184199, 292, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184200, 292, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184201, 292, 64543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184202, 292, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184203, 292, 66389, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184204, 292, 66390, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184205, 292, 63525, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184206, 292, 63505, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184207, 292, 63382, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184208, 292, 63397, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184209, 292, 63594, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184210, 293, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184211, 293, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184212, 293, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184213, 293, 65016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184214, 293, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184215, 293, 63278, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184216, 293, 66389, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184217, 293, 66390, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184218, 293, 66404, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184219, 293, 63505, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184220, 293, 63275, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184221, 293, 66407, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184222, 293, 66408, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184223, 293, 66409, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184224, 294, 66410, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184225, 294, 64756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184226, 294, 63776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184227, 294, 66413, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184228, 294, 64763, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184229, 294, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184230, 294, 66416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184231, 294, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184232, 294, 63713, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184233, 295, 64756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184234, 295, 66420, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184235, 295, 66421, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184236, 295, 66422, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184237, 295, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184238, 295, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184239, 295, 63713, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184240, 295, 66426, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184241, 295, 64763, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184242, 295, 66428, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184243, 295, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184244, 295, 66430, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184245, 295, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184246, 295, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184247, 295, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184248, 295, 66434, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184249, 296, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184250, 296, 66436, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184251, 296, 66437, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184252, 296, 63748, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184253, 296, 66439, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184254, 296, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184255, 296, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184256, 296, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184257, 296, 64731, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184258, 296, 65246, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184259, 296, 66354, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184260, 296, 63311, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184261, 297, 66447, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184262, 297, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184263, 297, 66449, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184264, 297, 63713, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184265, 297, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184266, 297, 66452, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184267, 297, 66453, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184268, 297, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184269, 297, 66455, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184270, 297, 63518, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184271, 297, 63793, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184272, 297, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184273, 297, 64209, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184274, 297, 63525, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184275, 297, 66461, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184276, 297, 66462, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184277, 297, 66463, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184278, 297, 63773, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184279, 297, 63870, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184280, 297, 66466, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184281, 297, 64206, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184282, 297, 63795, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184283, 297, 63794, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184284, 297, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184285, 297, 66471, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184286, 297, 66472, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184287, 297, 63790, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184288, 297, 63311, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184289, 297, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184290, 297, 64019, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184291, 297, 63640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184292, 298, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184293, 298, 66452, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184294, 298, 66480, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184295, 298, 66481, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184296, 298, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184297, 298, 63655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184298, 298, 65235, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184299, 298, 66485, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184300, 298, 64157, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184301, 298, 66487, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184302, 298, 64019, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184303, 298, 63773, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184304, 298, 63338, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184305, 298, 66491, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184306, 298, 63790, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184307, 298, 63650, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184308, 298, 63563, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184309, 298, 64207, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184310, 298, 63523, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184311, 298, 63243, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184312, 298, 64731, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184313, 298, 63794, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184314, 298, 63795, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184315, 299, 65049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184316, 299, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184317, 299, 66503, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184318, 299, 66481, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184319, 299, 66505, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184320, 299, 65245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184321, 299, 66507, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184322, 299, 63709, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184323, 299, 63523, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184324, 299, 63773, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184325, 299, 65040, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184326, 299, 64019, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184327, 299, 66513, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184328, 299, 63563, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184329, 299, 63790, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184330, 299, 63533, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184331, 299, 64206, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184332, 299, 66518, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184333, 299, 64731, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184334, 299, 63243, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184335, 299, 63311, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184336, 299, 63338, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184337, 299, 66523, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184338, 299, 66434, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184339, 299, 66525, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184340, 300, 63515, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184341, 300, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184342, 300, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184343, 301, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184344, 301, 63518, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184345, 301, 63519, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184346, 302, 63515, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184347, 302, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184348, 302, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184349, 303, 63515, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184350, 303, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184351, 303, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184352, 304, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184353, 304, 65013, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184354, 304, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184355, 304, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184356, 304, 65016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184357, 304, 64412, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184358, 304, 65018, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184359, 304, 65019, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184360, 304, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184361, 304, 66547, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184362, 305, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184363, 305, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184364, 305, 65620, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184365, 305, 65633, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184366, 305, 64310, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184367, 305, 65623, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184368, 305, 63829, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184369, 305, 65625, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184370, 305, 64542, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184371, 305, 65627, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184372, 305, 63532, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184373, 305, 65640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184374, 306, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184375, 306, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184376, 306, 65620, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184377, 306, 65621, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184378, 306, 64310, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184379, 306, 65623, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184380, 306, 63829, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184381, 306, 65625, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184382, 306, 64542, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184383, 306, 65627, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184384, 306, 63532, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184385, 306, 65629, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184386, 307, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184387, 307, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184388, 307, 65620, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184389, 307, 65621, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184390, 307, 64310, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184391, 307, 65623, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184392, 307, 63829, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184393, 307, 65625, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184394, 307, 64542, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184395, 307, 65627, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184396, 307, 63532, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184397, 307, 65629, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184398, 308, 65049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184399, 308, 66585, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184400, 308, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184401, 308, 66587, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184402, 308, 66588, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184403, 308, 66589, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184404, 308, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184405, 308, 66591, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184406, 308, 63283, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184407, 308, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184408, 308, 66594, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184409, 308, 66491, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184410, 308, 63790, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184411, 308, 66597, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184412, 308, 63311, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184413, 308, 66461, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184414, 308, 66600, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184415, 308, 66320, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184416, 308, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184417, 308, 65013, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184418, 308, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184419, 309, 66605, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184420, 309, 66606, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184421, 309, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184422, 309, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184423, 309, 66609, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184424, 309, 66610, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184425, 309, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184426, 309, 64763, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184427, 309, 64030, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184428, 309, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184429, 309, 64061, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184430, 309, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184431, 309, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184432, 309, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184434, 309, 66480, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184435, 309, 66621, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184436, 309, 64049, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184437, 309, 66482, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184438, 309, 66624, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184439, 309, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184440, 309, 66626, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184441, 309, 63713, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184442, 309, 65250, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184444, 309, 64135, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184446, 309, 66632, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184447, 309, 66633, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184448, 309, 66634, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184450, 309, 65745, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184451, 309, 66637, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184453, 309, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184454, 309, 65013, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184455, 309, 66641, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184456, 309, 66642, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184457, 309, 66643, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184458, 309, 66644, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184459, 309, 66645, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184461, 309, 66434, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184462, 309, 63531, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184463, 309, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184464, 309, 66650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184465, 309, 65066, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184466, 309, 64764, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184467, 309, 66653, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184468, 309, 63790, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184469, 309, 63780, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184470, 310, 66656, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184471, 310, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184472, 310, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184473, 310, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184474, 310, 66491, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184475, 310, 63534, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184476, 310, 66662, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184477, 310, 63713, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184479, 310, 66665, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184480, 310, 66666, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184481, 310, 63641, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184482, 310, 66668, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184484, 310, 66670, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184485, 310, 66671, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184486, 310, 64140, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184488, 310, 66674, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184489, 310, 66675, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184490, 310, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184491, 310, 66677, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184492, 310, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184493, 310, 64049, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184494, 310, 66680, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184495, 310, 63870, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184496, 310, 64051, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184497, 310, 63748, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184498, 310, 66684, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184500, 310, 63655, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184501, 310, 66687, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184502, 310, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184503, 310, 64149, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184505, 310, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184506, 310, 63531, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184507, 310, 63782, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184508, 310, 66694, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184509, 310, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184510, 310, 66696, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184511, 311, 66697, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184512, 311, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184513, 311, 66699, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184514, 311, 66518, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184515, 311, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184516, 311, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184517, 311, 66703, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184518, 311, 63713, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184519, 311, 64061, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184520, 311, 66706, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184522, 311, 66708, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184523, 311, 64140, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184524, 311, 66710, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184525, 311, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184526, 311, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184527, 311, 63655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184528, 311, 66624, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184530, 311, 63260, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184532, 311, 65250, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184534, 311, 66720, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184535, 311, 66721, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184536, 311, 64051, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184537, 311, 66723, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184538, 311, 66637, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184539, 311, 65013, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184540, 311, 66641, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184541, 311, 66642, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184542, 311, 66643, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184543, 311, 66644, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184544, 311, 66645, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184545, 311, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184546, 311, 64246, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184548, 311, 66734, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184549, 311, 66735, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184550, 311, 66736, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184551, 312, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184552, 312, 63792, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184553, 312, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184554, 312, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184555, 312, 66741, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184556, 312, 64223, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184557, 312, 63709, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184558, 312, 63773, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184559, 312, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184560, 312, 66746, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184561, 312, 66747, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184562, 312, 63886, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184563, 312, 64102, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184564, 312, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184565, 312, 64124, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184566, 312, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184567, 312, 66753, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184568, 313, 64756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184569, 313, 66755, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184570, 313, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184571, 313, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184572, 313, 66758, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184573, 313, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184574, 313, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184575, 313, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184576, 313, 66762, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184577, 313, 66416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184578, 313, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184579, 313, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184580, 313, 66766, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184581, 314, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184582, 314, 64716, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184583, 314, 66769, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184584, 314, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184585, 314, 65013, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184586, 314, 66772, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184587, 314, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184588, 314, 66774, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184589, 314, 63773, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184590, 314, 66455, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184591, 314, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184592, 314, 64124, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184593, 314, 66416, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184594, 315, 66447, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184595, 315, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184596, 315, 66782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184597, 315, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184598, 315, 66452, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184599, 315, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184600, 315, 64694, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184601, 315, 66787, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184602, 315, 63829, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184603, 315, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184604, 315, 63773, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184605, 315, 66455, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184606, 315, 66792, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184607, 315, 66793, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184608, 315, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184609, 315, 63983, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184610, 315, 63794, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184611, 315, 63795, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184612, 315, 64209, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184613, 315, 66766, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184614, 315, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184615, 315, 66801, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (184616, 315, 66802, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185297, 354, 67485, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185298, 354, 67486, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185299, 354, 67487, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185300, 354, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185301, 354, 67489, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185302, 354, 63776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185303, 354, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185304, 354, 67492, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185305, 354, 64616, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185306, 354, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185307, 354, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185308, 354, 67496, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185309, 354, 67497, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185310, 354, 67498, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185311, 354, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185312, 354, 63881, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185313, 354, 67501, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185314, 354, 63890, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185315, 354, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185316, 354, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185317, 354, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185318, 354, 67506, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185319, 354, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185320, 354, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185321, 354, 63532, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185322, 354, 67510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185323, 354, 63371, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185324, 355, 67485, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185325, 355, 67513, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185326, 355, 67514, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185327, 355, 67515, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185328, 355, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185329, 355, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185330, 355, 63558, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185331, 355, 67519, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185332, 355, 67520, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185333, 355, 63371, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185334, 356, 67485, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185335, 356, 67513, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185336, 356, 67514, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185337, 356, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185338, 356, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185339, 356, 63311, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185340, 356, 64030, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185341, 356, 63558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185342, 356, 67520, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185343, 356, 67519, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185344, 356, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185345, 357, 67485, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185346, 357, 67534, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185347, 357, 67535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185348, 357, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185349, 357, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185350, 357, 63558, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185351, 357, 67539, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185352, 358, 67485, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185353, 358, 67541, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185354, 358, 67514, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185355, 358, 67543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185356, 358, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185357, 358, 67545, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185358, 358, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185359, 358, 63558, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185360, 358, 63776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185361, 358, 67549, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185362, 358, 67550, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185363, 358, 67551, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185364, 358, 67552, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185365, 358, 67519, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185366, 358, 67554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185367, 358, 63371, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185368, 404, 65720, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185369, 404, 65680, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185370, 404, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185371, 404, 63910, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185372, 404, 64205, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185373, 404, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185374, 404, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185375, 404, 64927, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185376, 404, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185377, 404, 67565, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185378, 404, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185379, 404, 65013, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185380, 404, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185381, 404, 65755, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185382, 404, 67570, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185383, 404, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185384, 404, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185385, 404, 63890, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185386, 404, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185387, 404, 67575, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185388, 404, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185389, 404, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185390, 404, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185391, 404, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185392, 404, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185393, 378, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185394, 378, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185395, 378, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185396, 378, 63978, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185397, 378, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185398, 378, 66706, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185399, 378, 67587, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185400, 378, 65042, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185401, 378, 67589, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185402, 378, 67590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185403, 378, 63984, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185404, 378, 63985, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185405, 378, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185406, 379, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185407, 379, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185408, 379, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185409, 379, 64102, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185410, 379, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185411, 379, 66706, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185412, 379, 66416, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185413, 379, 67601, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185414, 379, 67602, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185415, 379, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185416, 379, 63984, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185417, 379, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185418, 379, 65016, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185419, 379, 63985, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185420, 379, 63794, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185421, 379, 63795, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185422, 380, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185423, 380, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185424, 380, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185425, 380, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185426, 380, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185427, 380, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185428, 380, 64026, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185429, 380, 67617, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185430, 380, 67549, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185431, 380, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185432, 380, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185433, 380, 67602, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185434, 380, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185435, 380, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185436, 380, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185437, 430, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185438, 430, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185439, 430, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185440, 430, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185441, 430, 67629, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185442, 430, 67630, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185443, 430, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185444, 430, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185445, 431, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185446, 431, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185447, 431, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185448, 431, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185449, 431, 67629, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185450, 431, 64669, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185451, 431, 67639, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185452, 431, 67640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185453, 431, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185454, 431, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185455, 431, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185456, 432, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185457, 432, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185458, 432, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185459, 432, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185460, 432, 67629, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185461, 432, 64669, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185462, 432, 67639, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185463, 432, 67640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185464, 432, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185465, 432, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185466, 432, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185467, 433, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185468, 433, 67656, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185469, 433, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185470, 433, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185471, 433, 67659, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185472, 433, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185473, 433, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185474, 433, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185475, 416, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185476, 416, 67664, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185477, 416, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185478, 416, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185479, 416, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185480, 416, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185481, 416, 64019, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185482, 416, 67670, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185483, 416, 63984, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185484, 416, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185485, 359, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185486, 359, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185487, 359, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185488, 359, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185489, 359, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185490, 359, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185491, 360, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185492, 360, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185493, 360, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185494, 360, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185495, 360, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185496, 360, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185497, 361, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185498, 361, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185499, 361, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185500, 361, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185501, 361, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185502, 361, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185503, 362, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185504, 362, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185505, 362, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185506, 362, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185507, 362, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185508, 362, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185509, 329, 63974, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185510, 329, 64026, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185511, 329, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185512, 329, 67700, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185513, 329, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185514, 329, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185515, 329, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185516, 329, 67704, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185517, 329, 63983, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185518, 329, 63985, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185522, 64, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185534, 65, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185546, 66, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185558, 67, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185582, 69, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185597, 70, 67785, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185615, 71, 66354, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185623, 72, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185630, 73, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185644, 74, 67832, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185662, 75, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185725, 370, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185726, 370, 0, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185727, 370, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185728, 370, 67916, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185729, 370, 67917, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185730, 370, 63655, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185731, 370, 67919, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185732, 370, 64571, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185733, 370, 67921, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185734, 370, 67922, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185735, 370, 63717, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185736, 370, 67924, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185737, 370, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185738, 370, 67926, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185739, 370, 64694, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185740, 370, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185741, 370, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185742, 370, 65680, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185743, 370, 67931, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185744, 370, 67932, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185745, 370, 67933, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185746, 370, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185747, 370, 63884, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185748, 370, 67936, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185749, 370, 67937, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185750, 370, 64903, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185751, 370, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185752, 370, 64669, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185753, 370, 67941, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185754, 370, 67942, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185755, 371, 67943, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185756, 371, 67944, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185757, 371, 67917, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185758, 371, 64144, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185759, 371, 67947, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185760, 371, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185761, 371, 67949, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185762, 371, 67950, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185763, 371, 67951, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185764, 371, 67952, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185765, 371, 67953, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185766, 371, 64571, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185767, 371, 67955, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185768, 371, 67549, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185769, 371, 67957, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185770, 371, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185771, 371, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185772, 371, 65680, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185773, 371, 67961, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185774, 371, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185775, 371, 67963, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185776, 371, 67964, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185777, 371, 67965, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185778, 371, 67966, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185779, 371, 63596, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185780, 372, 0, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185781, 372, 63709, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185782, 372, 64167, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185783, 372, 67971, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185784, 372, 64143, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185785, 372, 63776, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185786, 372, 64142, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185787, 372, 64716, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185788, 372, 66684, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185789, 372, 67977, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185790, 372, 64571, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185791, 372, 67979, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185792, 372, 67980, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185793, 372, 64173, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185794, 372, 67982, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185795, 372, 67983, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185796, 372, 67951, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185797, 372, 65040, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185798, 372, 67986, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185799, 372, 67987, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185800, 372, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185801, 372, 67989, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185802, 372, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185803, 372, 67991, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185804, 372, 67992, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185805, 373, 66480, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185806, 373, 67994, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185807, 373, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185808, 373, 64716, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185809, 373, 64143, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185810, 373, 0, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185811, 373, 65680, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185812, 373, 67916, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185813, 373, 68001, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185814, 373, 65040, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185815, 373, 68003, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185816, 373, 65035, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185817, 373, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185818, 373, 64829, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185819, 373, 67989, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185820, 373, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185821, 373, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185822, 373, 67991, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185823, 373, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185824, 373, 68012, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185825, 373, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185826, 373, 67936, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185827, 373, 67941, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185828, 374, 0, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185829, 374, 68017, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185830, 374, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185831, 374, 68019, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185832, 374, 64143, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185833, 374, 64571, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185834, 374, 67916, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185835, 374, 68023, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185836, 374, 67601, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185837, 374, 68025, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185838, 374, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185839, 374, 68027, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185840, 374, 68028, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185841, 374, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185842, 374, 68030, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185843, 374, 63782, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185844, 374, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185845, 374, 68033, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185846, 374, 68012, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185847, 374, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185848, 374, 68036, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185849, 375, 68037, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185850, 375, 64140, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185851, 375, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185852, 375, 64165, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185853, 375, 66452, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185854, 375, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185855, 375, 68043, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185856, 375, 66421, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185857, 375, 64143, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185858, 375, 68046, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185859, 375, 63717, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185860, 375, 64716, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185861, 375, 67916, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185862, 375, 68050, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185863, 375, 64571, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185864, 375, 68052, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185865, 375, 68053, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185866, 375, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185867, 375, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185868, 375, 64763, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185869, 375, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185870, 375, 68058, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185871, 375, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185872, 375, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185873, 375, 68061, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185874, 375, 68012, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185875, 375, 63526, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185876, 375, 63596, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185877, 375, 64030, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185878, 375, 64542, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185879, 375, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185880, 375, 67941, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185881, 376, 67944, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185882, 376, 64716, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185883, 376, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185884, 376, 66481, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185885, 376, 64143, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185886, 376, 68074, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185887, 376, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185888, 376, 68076, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185889, 376, 68077, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185890, 376, 68078, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185891, 376, 66684, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185892, 376, 68080, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185893, 376, 67987, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185894, 376, 64571, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185895, 376, 63782, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185896, 376, 68084, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185897, 377, 67944, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185898, 377, 68086, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185899, 377, 66410, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185900, 377, 68074, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185901, 377, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185902, 377, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185903, 377, 67949, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185904, 377, 64143, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185905, 377, 68093, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185906, 377, 68076, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185907, 377, 67989, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185908, 377, 68096, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185909, 377, 63782, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185910, 377, 65680, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185911, 377, 64571, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185912, 377, 68100, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185913, 377, 68101, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185914, 377, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185915, 384, 68103, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185916, 384, 65846, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185917, 384, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185918, 384, 65944, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185919, 384, 64638, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185920, 384, 68108, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185921, 384, 68109, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185922, 385, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185923, 385, 65872, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185924, 385, 68112, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185925, 385, 65903, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185926, 385, 63717, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185927, 385, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185928, 385, 68116, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185929, 385, 64638, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185930, 385, 63371, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185931, 385, 68108, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185932, 385, 68120, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185933, 436, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185934, 436, 68122, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185935, 436, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185936, 436, 68124, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185937, 436, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185938, 436, 68126, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185939, 436, 68127, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185940, 436, 68128, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185941, 436, 65852, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185942, 437, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185943, 437, 68122, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185944, 437, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185945, 437, 68124, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185946, 437, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185947, 437, 68126, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185948, 437, 68127, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185949, 437, 68128, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185950, 437, 65852, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185951, 438, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185952, 438, 68122, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185953, 438, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185954, 438, 68124, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185955, 438, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185956, 438, 68126, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185957, 438, 68127, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185958, 438, 68128, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185959, 438, 65852, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185960, 439, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185961, 439, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185962, 439, 68150, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185963, 439, 64643, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185964, 439, 65878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185965, 439, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185966, 439, 68154, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185967, 439, 68155, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185968, 439, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185969, 439, 65050, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185970, 439, 68158, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185971, 439, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185972, 440, 68160, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185973, 440, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185974, 440, 63870, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185975, 440, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185976, 440, 68164, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185977, 440, 68165, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185978, 440, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185979, 440, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185980, 440, 68124, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185981, 440, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185982, 440, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (185983, 440, 65050, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186316, 410, 65682, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186317, 410, 65683, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186318, 410, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186319, 410, 65725, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186320, 410, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186321, 410, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186322, 410, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186323, 410, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186324, 410, 63890, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186325, 410, 65690, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186326, 410, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186327, 410, 68515, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186328, 410, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186329, 410, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186330, 410, 65694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186331, 410, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186332, 392, 65682, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186333, 392, 65683, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186334, 392, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186335, 392, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186336, 392, 65725, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186337, 392, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186338, 392, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186339, 392, 63890, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186340, 392, 65690, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186341, 392, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186342, 392, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186343, 392, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186344, 392, 65694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186345, 392, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186346, 453, 68534, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186347, 453, 68535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186348, 453, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186349, 453, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186350, 453, 68538, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186351, 453, 68539, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186352, 453, 65878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186353, 453, 68541, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186354, 453, 64924, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186355, 453, 68543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186516, 397, 65720, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186517, 397, 65680, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186518, 397, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186519, 397, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186520, 397, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186521, 397, 65725, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186522, 397, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186523, 397, 65013, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186524, 397, 64927, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186525, 397, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186526, 397, 63881, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186527, 397, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186528, 397, 68716, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186529, 397, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186530, 397, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186531, 397, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186532, 397, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186533, 397, 65745, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186534, 397, 63890, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186535, 397, 64205, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186536, 397, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186537, 397, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186538, 397, 66404, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186539, 397, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186540, 397, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186541, 397, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186542, 398, 65720, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186543, 398, 65680, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186544, 398, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186545, 399, 65720, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186546, 399, 65680, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186547, 399, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186548, 463, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186549, 463, 68737, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186550, 463, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186551, 463, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186552, 463, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186553, 463, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186554, 463, 68742, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186555, 463, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186556, 452, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186557, 452, 68745, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186558, 452, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186559, 452, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186560, 452, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186561, 452, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186562, 452, 63527, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186563, 452, 63249, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186564, 457, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186565, 457, 68745, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186566, 457, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186567, 457, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186568, 457, 68756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186581, 500, 68769, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186582, 500, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186583, 500, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186584, 352, 66480, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186585, 352, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186586, 352, 68774, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186587, 353, 66480, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186588, 353, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186589, 353, 68774, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186590, 350, 66480, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186591, 350, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186592, 350, 68774, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186658, 333, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186659, 333, 63713, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186660, 333, 64051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186661, 333, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186662, 333, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186663, 333, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186664, 333, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186665, 333, 64244, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186666, 333, 64245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186667, 333, 64246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186668, 333, 63525, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186669, 333, 64248, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186670, 333, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186671, 333, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186672, 333, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186673, 333, 64152, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186674, 334, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186675, 334, 63713, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186676, 334, 64051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186677, 334, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186678, 334, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186679, 334, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186680, 334, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186681, 334, 64244, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186682, 334, 64245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186683, 334, 64246, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186684, 334, 63525, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186685, 334, 64248, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186686, 334, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186687, 334, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186688, 334, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186689, 334, 64152, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186690, 492, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186691, 492, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186692, 492, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186693, 492, 63272, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186694, 492, 68882, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186695, 492, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186696, 492, 64835, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186697, 492, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186698, 492, 63244, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186699, 492, 64779, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186700, 492, 64468, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186701, 492, 64782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186702, 492, 68890, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186703, 492, 68891, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186704, 492, 68892, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186705, 492, 63319, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186706, 492, 68894, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186707, 492, 68895, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186708, 492, 63494, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186709, 492, 65415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186710, 492, 65416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186711, 460, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186712, 460, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186713, 460, 68901, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186714, 460, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186715, 460, 68903, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186716, 460, 68904, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186717, 460, 66096, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186718, 460, 68906, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186719, 460, 63283, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186720, 460, 65557, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186721, 460, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186722, 460, 63272, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186723, 460, 68911, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186724, 460, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186725, 460, 65414, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186726, 460, 68914, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186727, 460, 65415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186728, 460, 63275, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (186729, 460, 65416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187071, 501, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187072, 501, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187073, 501, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187074, 501, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187075, 501, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187076, 501, 63283, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187077, 501, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187078, 502, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187079, 502, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187080, 502, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187081, 502, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187082, 502, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187083, 502, 63283, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187084, 502, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187085, 411, 65720, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187086, 411, 65721, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187087, 411, 64205, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187088, 411, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187089, 411, 64927, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187090, 411, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187091, 411, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187092, 411, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187093, 411, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187094, 411, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187095, 411, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187096, 411, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187097, 411, 65725, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187098, 411, 65804, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187099, 411, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187100, 411, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187101, 411, 65016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187102, 411, 63881, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187103, 411, 69291, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187104, 411, 69292, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187105, 411, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187106, 411, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187107, 411, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187108, 411, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187109, 411, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187110, 412, 65720, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187111, 412, 69299, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187112, 412, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187113, 412, 63910, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187114, 412, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187115, 412, 65013, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187116, 412, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187117, 412, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187118, 412, 64205, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187119, 412, 69307, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187120, 412, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187121, 412, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187122, 412, 65755, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187123, 412, 65728, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187124, 412, 63890, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187125, 412, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187126, 412, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187127, 412, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187128, 412, 64927, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187129, 412, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187130, 412, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187131, 412, 69319, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187132, 412, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187133, 412, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187134, 412, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187135, 412, 69323, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187136, 412, 63881, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187137, 412, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187138, 412, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187139, 412, 65804, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187140, 412, 65816, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187141, 412, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187142, 413, 65720, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187143, 413, 65721, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187144, 413, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187145, 413, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187146, 413, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187147, 413, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187148, 413, 69336, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187149, 413, 64927, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187150, 413, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187151, 413, 63776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187152, 413, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187153, 413, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187154, 413, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187155, 413, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187156, 413, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187157, 413, 67941, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187158, 413, 67506, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187159, 413, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187160, 413, 69348, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187161, 413, 63884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187162, 413, 69350, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187163, 413, 69351, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187164, 413, 69352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187165, 413, 63590, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187166, 414, 65720, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187167, 414, 65721, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187168, 414, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187169, 414, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187170, 414, 65725, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187171, 414, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187172, 414, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187173, 414, 64205, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187174, 414, 68716, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187175, 414, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187176, 414, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187177, 414, 65755, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187178, 414, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187179, 414, 63890, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187180, 414, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187181, 414, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187182, 414, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187183, 414, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187184, 414, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187185, 414, 69373, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187186, 414, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187187, 414, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187188, 414, 63881, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187189, 414, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187190, 414, 69336, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187191, 414, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187192, 414, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187193, 414, 65804, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187194, 447, 69382, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187195, 447, 69383, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187196, 447, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187197, 447, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187198, 447, 69386, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187199, 447, 67549, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187200, 447, 69388, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187201, 447, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187202, 447, 69390, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187203, 447, 69391, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187204, 447, 64156, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187205, 447, 63748, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187206, 447, 67952, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187207, 447, 69395, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187208, 447, 67983, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187209, 447, 63531, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187211, 447, 64038, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187212, 447, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187213, 448, 69401, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187214, 448, 69402, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187215, 448, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187216, 448, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187217, 448, 66480, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187218, 448, 66481, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187219, 448, 65235, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187220, 448, 64135, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187221, 448, 69409, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187222, 448, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187224, 448, 69412, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187225, 448, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187226, 448, 64109, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187227, 448, 69415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187228, 448, 69416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187229, 448, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187230, 448, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187231, 448, 69419, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187232, 448, 63870, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187233, 448, 66687, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187234, 448, 69422, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187235, 448, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187236, 448, 64669, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187237, 448, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187238, 448, 66491, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187239, 448, 63531, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187240, 448, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187241, 449, 69382, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187242, 449, 69430, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187243, 449, 69431, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187244, 449, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187245, 449, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187246, 449, 64716, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187247, 449, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187248, 449, 69436, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187249, 449, 69390, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187250, 449, 69438, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187251, 449, 69439, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187252, 449, 64156, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187253, 449, 69441, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187254, 449, 69391, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187255, 449, 63713, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187256, 449, 63531, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187257, 449, 63782, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187258, 449, 63650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187259, 450, 69382, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187260, 450, 69448, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187261, 450, 63709, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187262, 450, 66482, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187263, 450, 69451, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187264, 450, 64142, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187265, 450, 69453, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187266, 450, 69436, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187267, 450, 66684, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187268, 450, 69391, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187269, 450, 63748, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187270, 450, 63713, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187271, 450, 69459, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187272, 450, 64038, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187273, 450, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187274, 451, 0, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187275, 451, 69463, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187276, 451, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187277, 451, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187278, 451, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187279, 451, 69467, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187280, 451, 69468, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187281, 451, 64156, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187282, 451, 69388, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187283, 451, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187284, 451, 69472, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187285, 451, 69473, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187286, 451, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187287, 451, 64150, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187288, 451, 69476, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187289, 451, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187290, 451, 63531, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187291, 341, 69479, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187292, 341, 66480, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187293, 341, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187294, 341, 63713, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187295, 341, 65239, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187296, 341, 64151, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187297, 341, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187298, 341, 63884, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187299, 341, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187300, 341, 63782, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187301, 341, 64152, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187302, 341, 65040, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187303, 341, 64051, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187304, 341, 64158, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187305, 341, 65249, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187306, 341, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187307, 341, 69495, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187308, 341, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187309, 341, 63526, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187310, 341, 63790, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187311, 341, 69499, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187312, 341, 69500, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187313, 341, 64246, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187314, 341, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187315, 341, 66184, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187316, 341, 69472, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187317, 341, 64135, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187318, 341, 64164, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187319, 341, 63596, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187320, 341, 69508, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187321, 477, 0, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187322, 477, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187323, 477, 64167, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187324, 477, 64191, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187325, 477, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187326, 477, 69386, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187327, 477, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187328, 477, 64143, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187329, 477, 69517, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187330, 477, 69518, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187331, 477, 69519, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187332, 477, 69520, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187333, 477, 69521, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187334, 477, 63713, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187335, 477, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187336, 477, 69524, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187337, 477, 69525, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187338, 477, 69526, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187339, 477, 69527, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187340, 477, 69528, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187341, 477, 69529, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187342, 477, 69530, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187343, 477, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187344, 477, 69532, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187345, 477, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187346, 478, 64140, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187347, 478, 69535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187348, 478, 69536, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187349, 478, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187350, 478, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187351, 478, 64156, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187352, 478, 69540, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187353, 478, 64811, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187354, 478, 66452, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187355, 478, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187356, 478, 69544, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187357, 478, 69545, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187358, 478, 69386, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187359, 478, 64143, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187360, 478, 63713, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187361, 478, 69549, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187362, 478, 69550, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187363, 478, 69521, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187364, 478, 69552, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187365, 478, 64150, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187366, 478, 69519, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187367, 478, 69555, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187368, 478, 69525, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187369, 478, 69557, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187370, 478, 69558, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187371, 478, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187372, 478, 64209, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187373, 478, 69561, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187374, 478, 69562, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187375, 478, 64316, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187376, 478, 63780, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187377, 478, 69565, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187378, 478, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187379, 478, 69567, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187380, 478, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187381, 479, 69535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187382, 479, 69570, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187383, 479, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187384, 479, 64167, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187385, 479, 69573, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187386, 479, 64143, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187387, 479, 66452, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187388, 479, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187389, 479, 69577, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187390, 479, 69578, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187391, 479, 69544, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187392, 479, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187393, 479, 69520, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187394, 479, 69582, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187395, 479, 63748, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187396, 479, 63713, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187397, 479, 69555, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187398, 479, 64150, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187399, 479, 69549, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187400, 479, 69588, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187401, 479, 69557, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187402, 479, 64209, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187403, 479, 69561, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187404, 479, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187405, 479, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187406, 479, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187407, 479, 69595, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187408, 479, 63780, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187409, 479, 69565, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187410, 479, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187411, 479, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187412, 479, 69600, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187413, 480, 69601, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187414, 480, 69602, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187415, 480, 0, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187416, 480, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187417, 480, 64140, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187418, 480, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187419, 480, 64143, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187420, 480, 69608, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187421, 480, 63713, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187422, 480, 63655, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187423, 480, 69611, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187424, 480, 69612, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187425, 480, 69521, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187426, 480, 69614, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187427, 480, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187428, 480, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187429, 480, 69588, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187430, 480, 69618, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187431, 480, 69619, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187432, 480, 69565, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187433, 480, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187434, 481, 0, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187435, 481, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187436, 481, 69624, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187437, 481, 63655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187438, 481, 69626, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187439, 481, 69627, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187440, 481, 69588, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187441, 481, 69521, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187442, 481, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187443, 481, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187444, 481, 69632, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187445, 481, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187446, 481, 64162, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187447, 481, 66766, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187448, 482, 69636, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187449, 482, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187450, 482, 69638, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187451, 482, 69639, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187452, 482, 69640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187453, 482, 66480, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187454, 482, 64143, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187455, 482, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187456, 482, 69644, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187457, 482, 64178, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187458, 482, 69646, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187459, 482, 69647, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187460, 482, 66753, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187461, 482, 63590, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187462, 482, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187463, 482, 69651, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187464, 482, 69652, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187465, 482, 69521, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187466, 482, 69654, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187467, 482, 69655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187468, 482, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187469, 482, 69549, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187470, 482, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187471, 482, 64209, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187472, 482, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187473, 482, 64162, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187474, 482, 63371, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187475, 482, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187476, 482, 64643, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187477, 483, 69535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187478, 483, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187479, 483, 69638, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187480, 483, 68074, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187481, 483, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187482, 483, 64143, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187483, 483, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187484, 483, 69672, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187485, 483, 69673, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187486, 483, 69674, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187487, 483, 69675, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187488, 483, 69519, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187489, 483, 69544, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187490, 483, 69678, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187491, 483, 69651, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187492, 483, 64694, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187493, 483, 69521, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187494, 483, 69682, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187495, 483, 64209, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187496, 483, 63532, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187497, 483, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187498, 483, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187499, 483, 69562, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187500, 483, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187501, 484, 69535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187502, 484, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187503, 484, 69638, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187504, 484, 69692, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187505, 484, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187506, 484, 65235, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187507, 484, 69695, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187508, 484, 69696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187509, 484, 64143, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187510, 484, 69698, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187511, 484, 69699, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187512, 484, 69519, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187513, 484, 69701, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187514, 484, 69702, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187515, 484, 69588, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187516, 484, 69651, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187517, 484, 69521, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187518, 484, 69706, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187519, 484, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187520, 484, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187521, 484, 69709, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187522, 484, 64030, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187523, 484, 69711, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187524, 484, 69712, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187525, 484, 64209, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187526, 484, 69714, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187527, 484, 63780, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187528, 485, 69716, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187529, 485, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187530, 485, 69638, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187531, 485, 64167, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187532, 485, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187533, 485, 69721, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187534, 485, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187535, 485, 64142, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187536, 485, 69544, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187537, 485, 69725, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187538, 485, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187539, 485, 69651, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187540, 485, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187541, 485, 64763, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187542, 485, 69730, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187543, 485, 69706, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187544, 485, 64209, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187545, 485, 63532, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187546, 485, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187547, 485, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187548, 485, 69549, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187549, 485, 64162, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187550, 485, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187551, 485, 69521, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187552, 486, 69740, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187553, 486, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187554, 486, 69624, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187555, 486, 69743, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187556, 486, 69744, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187557, 486, 69745, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187558, 486, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187559, 486, 63655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187560, 486, 69748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187561, 486, 69749, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187562, 486, 69521, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187563, 486, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187564, 486, 69752, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187565, 486, 69753, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187566, 486, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187567, 486, 69651, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187568, 486, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187569, 486, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187570, 486, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187571, 486, 66416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187572, 486, 69760, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187573, 486, 66766, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187574, 486, 64162, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187575, 486, 63371, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187576, 487, 69764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187577, 487, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187578, 487, 63511, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187579, 487, 69767, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187580, 487, 69768, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187581, 487, 69769, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187582, 487, 63509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187583, 487, 63518, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187584, 487, 69772, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187585, 487, 69773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187586, 487, 64209, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187587, 487, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187588, 487, 69565, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187589, 487, 63371, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187590, 487, 67552, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187591, 487, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187592, 488, 69716, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187593, 488, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187594, 488, 69638, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187595, 488, 69783, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187596, 488, 64144, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187597, 488, 68086, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187598, 488, 66481, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187599, 488, 64694, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187600, 488, 69788, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187601, 488, 69519, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187602, 488, 69790, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187603, 488, 69521, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187604, 488, 63782, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187605, 488, 66766, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187606, 488, 64763, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187607, 488, 69651, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187608, 488, 63532, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187609, 488, 64209, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187610, 488, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187611, 488, 63884, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187612, 488, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187613, 489, 69801, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187614, 489, 69536, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187615, 489, 69803, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187616, 489, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187617, 489, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187618, 489, 69806, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187619, 489, 69807, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187620, 489, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187621, 489, 69809, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187622, 489, 69646, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187623, 489, 69811, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187624, 489, 69654, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187625, 489, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187626, 489, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187627, 489, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187628, 489, 63533, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187629, 489, 64162, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187630, 489, 69752, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187631, 489, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187632, 489, 64643, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187838, 493, 70026, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187839, 493, 70027, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187840, 493, 70028, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187841, 493, 70029, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187842, 493, 70030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187843, 493, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187844, 493, 64782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187845, 493, 65414, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187846, 493, 70034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187847, 493, 65415, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187848, 493, 65416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187984, 461, 70172, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (187985, 462, 70172, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188021, 386, 70209, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188022, 386, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188023, 386, 70211, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188024, 387, 70209, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188025, 387, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188026, 387, 70211, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188027, 388, 70215, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188028, 388, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188029, 388, 70211, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188066, 76, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188347, 490, 70535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188348, 490, 63512, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188349, 330, 70537, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188350, 330, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188351, 330, 63717, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188352, 330, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188353, 330, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188354, 330, 66103, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188355, 330, 70543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188356, 330, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188357, 330, 70545, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188358, 330, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188359, 331, 70537, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188360, 331, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188361, 331, 63717, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188362, 331, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188363, 331, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188364, 331, 64016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188365, 331, 64049, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188366, 331, 66103, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188367, 331, 70555, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188368, 331, 70543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188369, 331, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188370, 331, 70558, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188371, 331, 70545, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188372, 331, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188414, 491, 70602, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188415, 491, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188416, 491, 70604, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188417, 491, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188418, 491, 70606, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188419, 491, 65812, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188420, 491, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188421, 491, 65412, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188422, 491, 70610, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188423, 491, 70611, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188424, 491, 63713, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188425, 491, 64051, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188426, 491, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188427, 491, 63260, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188428, 491, 70616, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188429, 491, 70617, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188431, 491, 63874, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188432, 491, 70620, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188433, 491, 64162, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188434, 491, 70622, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188435, 491, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188436, 491, 63650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188437, 491, 70625, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188438, 491, 66694, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188439, 491, 70627, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188441, 491, 70629, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188442, 491, 63870, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188443, 491, 70631, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188445, 491, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188446, 491, 70634, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188449, 491, 70637, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188450, 491, 70638, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188451, 491, 70639, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188452, 491, 70640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188453, 491, 70641, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188454, 491, 70642, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188455, 491, 68534, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188457, 491, 70645, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188458, 491, 70646, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188459, 491, 70647, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188460, 335, 70648, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188461, 336, 70649, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188462, 336, 70650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188463, 337, 70651, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188464, 337, 70652, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188465, 338, 70653, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188466, 339, 70654, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188467, 340, 70655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188468, 340, 70656, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188645, 342, 65034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188646, 343, 65034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188647, 344, 65034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188648, 345, 65034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188649, 346, 65034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188650, 347, 65034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188651, 348, 65034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188652, 349, 65034, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188886, 332, 71074, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188887, 332, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188888, 332, 66710, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188889, 332, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188890, 332, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188891, 332, 66103, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188892, 332, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188893, 332, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188894, 332, 70543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188895, 332, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188896, 332, 71084, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188897, 332, 70545, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188898, 332, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188899, 418, 71074, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188900, 418, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188901, 418, 71089, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188902, 418, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188903, 418, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188904, 418, 66103, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188905, 418, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188906, 418, 65016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188907, 418, 70543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188908, 418, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188909, 418, 71084, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188910, 418, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188911, 418, 68894, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188912, 418, 71100, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188913, 418, 70545, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188914, 418, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188915, 419, 71074, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188916, 419, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188917, 419, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188918, 419, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188919, 419, 66103, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188920, 419, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188921, 419, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188922, 419, 71084, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188923, 419, 70545, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188924, 419, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188925, 420, 71074, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188926, 420, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188927, 420, 66045, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188928, 420, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188929, 420, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188930, 420, 66103, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188931, 420, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188932, 420, 70543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188933, 420, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188934, 420, 71084, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188935, 420, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188936, 420, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188937, 420, 70545, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188938, 420, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188939, 421, 71074, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188940, 421, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188941, 421, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188942, 421, 70027, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188943, 421, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188944, 421, 66103, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188945, 421, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188946, 421, 70543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188947, 421, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188948, 421, 71084, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188949, 421, 63494, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188950, 421, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188951, 421, 67496, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188952, 421, 70545, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188953, 421, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188954, 422, 71142, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188955, 422, 71143, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188956, 422, 66134, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188957, 422, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188958, 422, 68543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188959, 422, 66103, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188960, 422, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188961, 422, 70543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188962, 422, 71150, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188963, 422, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188964, 422, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188965, 423, 71142, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188966, 423, 71154, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188967, 423, 66134, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188968, 423, 63874, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188969, 423, 68543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188970, 423, 66103, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188971, 423, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188972, 423, 70543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188973, 423, 71150, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188974, 423, 63535, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188975, 423, 63510, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188976, 363, 71164, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188977, 363, 71165, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188978, 363, 71166, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188979, 364, 71167, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188980, 364, 70543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188981, 364, 63784, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188982, 365, 71170, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188983, 366, 71167, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188984, 366, 70543, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188985, 366, 63784, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188986, 367, 71167, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188987, 367, 71175, 1)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188988, 368, 71170, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188989, 369, 71177, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (188990, 369, 71166, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189102, 458, 64756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189103, 458, 71291, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189104, 458, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189105, 458, 63713, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189106, 458, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189107, 458, 71295, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189108, 458, 64195, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189109, 458, 71297, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189110, 458, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189111, 458, 64152, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189112, 459, 64756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189113, 459, 71291, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189114, 459, 71302, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189115, 459, 64192, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189116, 459, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189117, 459, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189118, 459, 71306, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189119, 459, 64694, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189120, 459, 71308, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189121, 459, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189122, 459, 64195, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189123, 456, 66481, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189124, 456, 64756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189125, 456, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189126, 456, 64192, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189127, 456, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189128, 456, 63723, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189129, 456, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189130, 456, 64195, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189131, 456, 71319, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189132, 381, 71320, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189133, 381, 71321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189134, 381, 71322, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189135, 381, 71323, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189136, 454, 71320, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189137, 455, 71320, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189162, 326, 71350, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189163, 327, 71350, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189164, 328, 71350, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189165, 475, 71353, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189166, 476, 71353, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189167, 494, 71355, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189168, 494, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189169, 495, 71355, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189170, 495, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189171, 495, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189172, 495, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189173, 495, 69336, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189174, 495, 71362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189175, 495, 71363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189176, 495, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189177, 495, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189178, 495, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189179, 495, 71367, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189180, 496, 71355, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189181, 496, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189182, 496, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189183, 496, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189184, 496, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189185, 496, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189186, 496, 71362, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189187, 496, 71363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189188, 496, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189189, 497, 71355, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189190, 497, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189191, 497, 71379, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189192, 497, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189193, 497, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189194, 497, 64109, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189195, 497, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189196, 497, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189197, 497, 63782, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189198, 497, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189199, 497, 63776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189200, 497, 71388, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189201, 497, 63884, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189202, 497, 63341, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189203, 498, 71355, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189204, 498, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189205, 498, 64109, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189206, 498, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189207, 498, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189208, 498, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189209, 498, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189210, 498, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189211, 498, 64927, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189212, 498, 71400, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189213, 498, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189214, 498, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189215, 498, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189216, 498, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189217, 498, 71405, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189218, 498, 67506, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189219, 498, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189220, 498, 71408, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189221, 498, 63397, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189222, 498, 66416, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189223, 498, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189224, 498, 66257, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189225, 498, 66597, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189226, 498, 65016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189227, 498, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189228, 498, 63590, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189229, 498, 71417, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189230, 498, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189231, 498, 71419, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189232, 499, 71355, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189233, 499, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189234, 499, 64109, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189235, 499, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189236, 499, 71424, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189237, 499, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189238, 499, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189239, 499, 71427, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189240, 389, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189241, 389, 64764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189242, 389, 71430, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189243, 389, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189244, 390, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189245, 390, 64764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189246, 390, 71434, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189247, 390, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189248, 391, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189249, 391, 71437, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189250, 391, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189277, 396, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189278, 396, 71466, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189279, 396, 63723, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189280, 400, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189281, 400, 65700, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189282, 400, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189283, 400, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189284, 400, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189285, 400, 64030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189286, 400, 63311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189287, 400, 64927, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189288, 400, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189289, 400, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189290, 400, 71363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189291, 400, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189292, 400, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189293, 400, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189294, 400, 71482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189295, 405, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189296, 405, 64764, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189297, 405, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189298, 405, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189299, 405, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189300, 405, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189301, 405, 71363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189302, 405, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189303, 405, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189304, 405, 71492, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189305, 405, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189306, 405, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189307, 405, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189308, 405, 64753, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189309, 405, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189310, 405, 64932, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189311, 406, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189312, 406, 65700, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189313, 406, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189314, 402, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189315, 402, 65700, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189316, 402, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189317, 402, 63723, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189318, 402, 71506, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189319, 402, 69291, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189320, 402, 64578, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189321, 402, 71509, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189322, 402, 65016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189323, 402, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189324, 403, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189325, 403, 65700, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189326, 403, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189327, 403, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189328, 403, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189329, 403, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189330, 403, 71363, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189331, 403, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189332, 403, 64207, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189333, 403, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189334, 403, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189335, 403, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189336, 403, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189337, 403, 64753, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189338, 403, 63778, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189339, 403, 66257, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189340, 408, 66585, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189341, 408, 71529, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189342, 408, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189343, 408, 71531, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189344, 408, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189345, 408, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189346, 408, 65044, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189347, 408, 64542, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189348, 408, 65755, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189349, 408, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189350, 408, 63978, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189351, 408, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189352, 408, 63530, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189353, 408, 65690, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189354, 408, 65804, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189355, 408, 63881, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189356, 408, 63267, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189357, 408, 63371, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189358, 408, 65016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189359, 408, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189360, 408, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189361, 408, 65725, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189362, 408, 71550, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189363, 408, 64205, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189364, 408, 63640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189365, 408, 63247, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189366, 408, 71554, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189367, 408, 63532, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189368, 408, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189369, 408, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189370, 408, 63780, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189488, 424, 71676, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189489, 424, 71677, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189490, 424, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189491, 424, 64061, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189492, 424, 65051, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189493, 424, 65053, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189494, 424, 63887, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189495, 424, 71683, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189496, 424, 71684, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189497, 424, 71685, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189498, 424, 63773, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189499, 424, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189500, 424, 71688, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189501, 424, 71689, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189502, 424, 63650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189503, 424, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189504, 424, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189505, 424, 71693, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189506, 424, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189507, 424, 71695, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189508, 424, 71696, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189509, 424, 71697, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189510, 424, 63795, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189511, 424, 63794, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189512, 425, 71676, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189513, 425, 71701, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189514, 425, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189515, 425, 64061, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189516, 425, 65051, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189517, 425, 65053, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189518, 425, 71706, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189519, 425, 63773, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189520, 425, 71688, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189521, 425, 71689, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189522, 425, 71710, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189523, 425, 71685, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189524, 425, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189525, 425, 63650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189526, 425, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189527, 425, 65040, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189528, 425, 71697, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189529, 425, 71717, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189530, 425, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189531, 425, 71696, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189532, 425, 66207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189533, 425, 63790, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189534, 425, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189535, 425, 63795, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189536, 425, 63794, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189537, 425, 63242, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189538, 425, 64543, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189539, 426, 65013, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189540, 426, 64157, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189541, 426, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189542, 426, 66491, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189543, 426, 63773, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189544, 426, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189545, 426, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189546, 426, 63650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189547, 426, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189548, 426, 71736, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189549, 426, 71737, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189550, 426, 65051, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189551, 426, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189552, 426, 71740, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189553, 426, 63244, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189554, 426, 64061, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189555, 426, 71743, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189556, 426, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189557, 426, 64102, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189558, 426, 71746, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189559, 426, 63795, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189560, 426, 63794, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189561, 426, 71749, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189562, 426, 71717, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189563, 426, 65640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189564, 426, 71752, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189565, 426, 71753, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189566, 426, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189567, 426, 65040, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189568, 426, 71756, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189569, 426, 63352, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189570, 426, 63778, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189571, 426, 65044, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189572, 426, 71760, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189573, 427, 71761, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189574, 427, 68001, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189575, 427, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189576, 427, 63711, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189577, 427, 65050, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189578, 427, 63244, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189579, 427, 64061, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189580, 427, 65051, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189581, 427, 71769, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189582, 427, 71683, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189583, 427, 64574, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189584, 427, 71772, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189585, 427, 71773, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189587, 427, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189588, 427, 63650, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189589, 427, 71777, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189590, 427, 64927, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189591, 427, 66491, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189592, 427, 71688, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189593, 427, 71689, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189594, 427, 63790, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189595, 427, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189596, 427, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189597, 427, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189598, 427, 63560, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189599, 427, 71787, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189600, 427, 64310, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189601, 427, 63795, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189602, 427, 63794, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189603, 428, 71791, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189604, 428, 71792, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189605, 428, 71793, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189606, 428, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189607, 428, 65061, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189608, 428, 71688, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189609, 428, 71689, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189610, 428, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189611, 428, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189612, 428, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189613, 428, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189614, 428, 63790, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189615, 428, 65051, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189616, 428, 65053, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189617, 428, 64061, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189618, 428, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189619, 428, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189620, 428, 63887, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189621, 428, 63242, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189622, 428, 71685, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189623, 428, 71811, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189624, 428, 66753, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189625, 428, 63338, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189626, 429, 71791, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189627, 429, 71815, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189628, 429, 66428, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189629, 429, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189630, 429, 71818, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189631, 429, 71819, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189632, 429, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189633, 429, 71821, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189634, 429, 71822, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189635, 429, 71777, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189636, 429, 71824, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189637, 429, 71825, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189638, 429, 63563, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189639, 429, 63878, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189640, 429, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189641, 429, 71829, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189642, 429, 63790, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189643, 429, 71831, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189644, 429, 63650, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189645, 429, 64061, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189646, 429, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189647, 429, 63887, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189648, 429, 71836, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189649, 429, 64162, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189650, 429, 63795, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189651, 429, 63794, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189652, 429, 65640, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189653, 429, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189654, 429, 65042, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189655, 429, 71843, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189791, 401, 65349, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189792, 401, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189793, 401, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189794, 401, 63713, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189795, 401, 71983, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189796, 401, 63311, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189797, 401, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189798, 318, 64756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189799, 318, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189800, 318, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189801, 318, 71989, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189802, 318, 68086, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189803, 318, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189804, 318, 66585, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189805, 318, 67601, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189806, 318, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189807, 318, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189808, 318, 71996, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189809, 318, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189810, 318, 70639, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189811, 318, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189812, 318, 69476, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189813, 318, 72001, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189814, 318, 63978, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189815, 318, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189816, 318, 72004, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189817, 318, 72005, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189818, 319, 72006, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189819, 319, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189820, 319, 65696, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189821, 319, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189822, 319, 66772, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189823, 319, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189824, 319, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189825, 319, 66585, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189826, 319, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189827, 319, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189828, 319, 63793, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189829, 319, 67601, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189830, 319, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189831, 319, 64694, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189832, 319, 66452, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189833, 319, 66766, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189834, 319, 65680, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189835, 319, 64616, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189836, 319, 64124, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189837, 319, 72025, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189838, 320, 64151, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189839, 320, 65235, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189840, 320, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189841, 320, 72029, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189842, 320, 72030, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189843, 320, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189844, 320, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189845, 320, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189846, 320, 72034, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189847, 320, 66455, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189848, 320, 67601, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189849, 320, 70639, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189850, 320, 72038, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189851, 320, 63717, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189852, 320, 64706, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189853, 320, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189854, 320, 72042, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189855, 320, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189856, 320, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189857, 320, 72045, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189858, 320, 72046, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189859, 320, 67986, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189860, 320, 66416, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189861, 320, 64763, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189862, 320, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189863, 320, 64135, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189864, 320, 63371, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189865, 320, 64051, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189866, 320, 63782, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189867, 320, 67670, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189980, 464, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189981, 464, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189982, 464, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189983, 464, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189984, 464, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189985, 464, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189986, 464, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189987, 465, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189988, 465, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189989, 465, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189990, 465, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189991, 465, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189992, 465, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189993, 465, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189994, 466, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189995, 466, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189996, 466, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189997, 466, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189998, 466, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (189999, 466, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190000, 466, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190001, 467, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190002, 467, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190003, 467, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190004, 467, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190005, 467, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190006, 467, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190007, 467, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190008, 468, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190009, 468, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190010, 468, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190011, 468, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190012, 468, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190013, 468, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190014, 468, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190015, 469, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190016, 469, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190017, 469, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190018, 469, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190019, 469, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190020, 469, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190021, 469, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190022, 470, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190023, 470, 63277, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190024, 470, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190025, 470, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190026, 470, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190027, 470, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190028, 471, 72216, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190029, 471, 72217, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190030, 471, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190031, 471, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190032, 471, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190033, 471, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190034, 471, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190035, 471, 65016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190036, 471, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190037, 472, 72216, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190038, 472, 72217, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190039, 472, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190040, 472, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190041, 472, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190042, 472, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190043, 472, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190044, 472, 65016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190045, 472, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190046, 473, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190047, 473, 72235, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190048, 473, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190049, 473, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190050, 473, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190051, 473, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190052, 473, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190053, 473, 65016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190054, 474, 72216, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190055, 474, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190056, 474, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190057, 474, 68738, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190058, 474, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190059, 474, 63245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190060, 474, 63266, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190061, 474, 65016, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190062, 474, 63285, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190063, 434, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190064, 434, 72252, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190065, 434, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190066, 434, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190067, 434, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190068, 434, 72256, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190069, 434, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190070, 435, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190071, 435, 72252, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190072, 435, 64310, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190073, 435, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190074, 435, 63280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190075, 435, 72256, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190076, 435, 63321, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190077, 441, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190078, 441, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190079, 441, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190080, 441, 68894, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190081, 441, 72269, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190082, 442, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190083, 442, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190084, 442, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190085, 442, 68894, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190086, 442, 72269, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190087, 443, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190088, 443, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190089, 443, 64413, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190090, 443, 63243, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190091, 443, 64316, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190092, 443, 72280, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190093, 444, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190094, 444, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190095, 444, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190096, 444, 68894, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190097, 444, 72269, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190098, 445, 63259, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190099, 445, 63260, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190100, 445, 63352, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190101, 445, 68894, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190102, 445, 72269, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190103, 446, 72291, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190104, 446, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190105, 446, 72293, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190106, 446, 65013, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190107, 446, 64149, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190108, 446, 63655, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190109, 446, 63748, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190110, 446, 72298, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190111, 446, 63523, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190112, 446, 72300, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190113, 446, 63773, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190114, 446, 63776, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190115, 446, 63560, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190116, 321, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190117, 321, 66755, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190118, 321, 65245, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190119, 321, 64756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190120, 321, 66503, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190121, 321, 72309, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190122, 321, 66452, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190123, 321, 72311, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190124, 321, 72312, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190125, 321, 72313, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190126, 321, 72314, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190127, 321, 72315, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190128, 321, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190129, 321, 64753, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190130, 321, 67601, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190131, 321, 70639, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190132, 321, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190133, 321, 66491, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190134, 321, 72322, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190135, 321, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190136, 321, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190137, 321, 72325, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190138, 321, 66416, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190139, 321, 66455, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190140, 321, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190141, 321, 63794, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190142, 321, 63795, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190143, 321, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190144, 321, 66766, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190145, 321, 72333, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190146, 321, 64151, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190147, 321, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190148, 321, 72336, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190149, 321, 72337, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190150, 321, 67549, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190151, 321, 66706, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190152, 321, 65040, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190153, 321, 64124, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190154, 322, 64151, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190155, 322, 72343, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190156, 322, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190157, 322, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190158, 322, 72346, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190159, 322, 66452, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190160, 322, 72313, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190161, 322, 65040, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190162, 322, 70634, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190163, 322, 66491, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190164, 322, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190165, 322, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190166, 322, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190167, 322, 66753, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190168, 322, 63563, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190169, 322, 65680, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190170, 322, 66706, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190171, 322, 63878, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190172, 322, 63267, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190173, 322, 72361, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190174, 322, 66766, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190175, 322, 72325, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190176, 322, 63790, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190177, 322, 72365, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190178, 322, 66416, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190179, 322, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190180, 322, 72337, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190181, 322, 64157, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190182, 322, 72370, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190183, 323, 64151, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190184, 323, 64756, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190185, 323, 72373, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190186, 323, 69382, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190187, 323, 72375, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190188, 323, 65235, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190189, 323, 69467, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190190, 323, 72325, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190191, 323, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190192, 323, 69698, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190193, 323, 72314, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190194, 323, 72382, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190195, 323, 63748, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190196, 323, 70634, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190197, 323, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190198, 323, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190199, 323, 72387, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190200, 323, 66491, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190201, 323, 72389, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190202, 323, 72390, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190203, 323, 72391, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190204, 323, 67986, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190205, 323, 64616, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190206, 323, 65049, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190207, 323, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190208, 323, 65040, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190209, 323, 63776, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190210, 323, 63640, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190211, 323, 64782, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190212, 323, 72400, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190213, 324, 64151, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190214, 324, 72373, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190215, 324, 66482, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190216, 324, 72404, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190217, 324, 72325, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190218, 324, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190219, 324, 64694, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190220, 324, 63782, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190221, 324, 72409, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190222, 324, 65040, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190223, 324, 72411, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190224, 324, 64829, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190225, 324, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190226, 324, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190227, 324, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190228, 324, 72416, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190229, 324, 65680, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190230, 324, 72418, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190231, 324, 72390, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190232, 324, 72420, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190233, 324, 63884, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190234, 324, 72422, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190235, 325, 63709, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190236, 325, 64694, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190237, 325, 63792, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190238, 325, 72426, 0)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190239, 325, 72325, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190240, 325, 72428, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190241, 325, 72429, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190242, 325, 63338, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190243, 325, 72431, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190244, 325, 63590, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190245, 325, 72433, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190246, 325, 64571, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190247, 325, 66769, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190248, 325, 63277, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190249, 325, 63523, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190250, 325, 64223, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190251, 325, 67501, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190252, 325, 66491, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190253, 325, 64207, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190254, 325, 72442, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190255, 325, 63884, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190257, 325, 63243, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190258, 325, 64135, 2)
GO
INSERT [dbo].[tProductIngredient] ([ProductIngredientID], [ProductID], [IngredientID], [containsLessThanSomePerCent]) VALUES (190259, 325, 72447, 2)
GO
SET IDENTITY_INSERT [dbo].[tProductIngredient] OFF
GO
SET IDENTITY_INSERT [dbo].[tServing_size_UOM] ON 

GO
INSERT [dbo].[tServing_size_UOM] ([Serving_size_UOMID], [Serving_size_UOM]) VALUES (5, N'1')
GO
INSERT [dbo].[tServing_size_UOM] ([Serving_size_UOMID], [Serving_size_UOM]) VALUES (6, N'FL OZ')
GO
INSERT [dbo].[tServing_size_UOM] ([Serving_size_UOMID], [Serving_size_UOM]) VALUES (7, N'G')
GO
INSERT [dbo].[tServing_size_UOM] ([Serving_size_UOMID], [Serving_size_UOM]) VALUES (8, N'GAL')
GO
INSERT [dbo].[tServing_size_UOM] ([Serving_size_UOMID], [Serving_size_UOM]) VALUES (9, N'KG')
GO
INSERT [dbo].[tServing_size_UOM] ([Serving_size_UOMID], [Serving_size_UOM]) VALUES (10, N'L')
GO
INSERT [dbo].[tServing_size_UOM] ([Serving_size_UOMID], [Serving_size_UOM]) VALUES (11, N'LB')
GO
INSERT [dbo].[tServing_size_UOM] ([Serving_size_UOMID], [Serving_size_UOM]) VALUES (12, N'ML')
GO
INSERT [dbo].[tServing_size_UOM] ([Serving_size_UOMID], [Serving_size_UOM]) VALUES (13, N'OZ')
GO
INSERT [dbo].[tServing_size_UOM] ([Serving_size_UOMID], [Serving_size_UOM]) VALUES (14, N'PT')
GO
INSERT [dbo].[tServing_size_UOM] ([Serving_size_UOMID], [Serving_size_UOM]) VALUES (15, N'QT')
GO
SET IDENTITY_INSERT [dbo].[tServing_size_UOM] OFF
GO
SET IDENTITY_INSERT [dbo].[tStore] ON 

GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (2, N'Amelia                                                                                                                                                                                                  ', N'1261 W Ohio Pike                                                                                                                                                                                        ', N'                                                                                                                                                                                                        ', N'Amelia                                                                                                                                                                                                  ', N'OH                  ', N'45102               ', 3, N'000001    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (3, N'Anderson                                                                                                                                                                                                ', N'2121 Beechmont Ave                                                                                                                                                                                      ', N'                                                                                                                                                                                                        ', N'Cincinnati                                                                                                                                                                                              ', N'OH                  ', N'45230               ', 2, N'000002    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (4, N'Brownwood                                                                                                                                                                                               ', N'303 N Main Ave                                                                                                                                                                                          ', N'                                                                                                                                                                                                        ', N'Brownwood                                                                                                                                                                                               ', N'TX                  ', N'76801               ', 18, N'000003    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (5, N'Carmel                                                                                                                                                                                                  ', N'1218 S Range Line Rd                                                                                                                                                                                    ', N'                                                                                                                                                                                                        ', N'Carmel                                                                                                                                                                                                  ', N'IN                  ', N'46032               ', 9, N'000004    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (6, N'Cleburne                                                                                                                                                                                                ', N'1618 West Henderson                                                                                                                                                                                     ', N'                                                                                                                                                                                                        ', N'Cleburne                                                                                                                                                                                                ', N'TX                  ', N'76031               ', 19, N'000005    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (7, N'Columbus01                                                                                                                                                                                              ', N'1442 Parsons Ave                                                                                                                                                                                        ', N'                                                                                                                                                                                                        ', N'Columbus                                                                                                                                                                                                ', N'OH                  ', N'43207               ', 17, N'000006    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (8, N'Columbus01a                                                                                                                                                                                             ', N'1451 N. High Street                                                                                                                                                                                     ', N'                                                                                                                                                                                                        ', N'Columbus                                                                                                                                                                                                ', N'OH                  ', N'43201               ', 16, N'000007    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (9, N'Columbus01b                                                                                                                                                                                             ', N'151 W Sycamore St                                                                                                                                                                                       ', N'                                                                                                                                                                                                        ', N'Columbus                                                                                                                                                                                                ', N'OH                  ', N'43215               ', 15, N'000008    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (10, N'Downtown                                                                                                                                                                                                ', N' 1015 Vine St                                                                                                                                                                                           ', N'                                                                                                                                                                                                        ', N'Cincinnati                                                                                                                                                                                              ', N'OH                  ', N'45202               ', 2, N'000009    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (11, N'Eastgate                                                                                                                                                                                                ', N'4531 Eastgate Blvd,#500                                                                                                                                                                                 ', N'                                                                                                                                                                                                        ', N'Batavia                                                                                                                                                                                                 ', N'OH                  ', N'45103               ', 4, N'000010    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (12, N'Fresno                                                                                                                                                                                                  ', N'3054 E Shields Ave                                                                                                                                                                                      ', N'                                                                                                                                                                                                        ', N'Fresno                                                                                                                                                                                                  ', N'CA                  ', N'93726               ', 20, N'000011    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (13, N'Glen Este                                                                                                                                                                                               ', N'551 Old State Route 74                                                                                                                                                                                  ', N'                                                                                                                                                                                                        ', N'Glen Este                                                                                                                                                                                               ', N'OH                  ', N'45244               ', 5, N'000012    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (14, N'Hillsboro                                                                                                                                                                                               ', N'576 Harry Sauner Rd                                                                                                                                                                                     ', N'                                                                                                                                                                                                        ', N'Hillsboro                                                                                                                                                                                               ', N'OH                  ', N'45133               ', 12, N'000013    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (15, N'Indianapolis                                                                                                                                                                                            ', N'1366 E 86th St                                                                                                                                                                                          ', N'                                                                                                                                                                                                        ', N'Indianapolis                                                                                                                                                                                            ', N'IN                  ', N'46240               ', 8, N'000014    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (16, N'Indianapolis                                                                                                                                                                                            ', N'2551 Lake Circle Dr                                                                                                                                                                                     ', N'                                                                                                                                                                                                        ', N'Indianapolis                                                                                                                                                                                            ', N'IN                  ', N'46268               ', 7, N'000015    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (17, N'Indianapolis                                                                                                                                                                                            ', N'2631 W Michigan St                                                                                                                                                                                      ', N'                                                                                                                                                                                                        ', N'Indianapolis                                                                                                                                                                                            ', N'IN                  ', N'46222               ', 10, N'000016    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (18, N'Indianapolis                                                                                                                                                                                            ', N'5026 W 71st St                                                                                                                                                                                          ', N'                                                                                                                                                                                                        ', N'Indianapolis                                                                                                                                                                                            ', N'IN                  ', N'46268               ', 6, N'000017    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (19, N'Mt Orab                                                                                                                                                                                                 ', N'211 Sterling Run Blvd                                                                                                                                                                                   ', N'                                                                                                                                                                                                        ', N'Mt Orab                                                                                                                                                                                                 ', N'OH                  ', N'45154               ', 11, N'000018    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (20, N'Portsmouth                                                                                                                                                                                              ', N'812 Gay St                                                                                                                                                                                              ', N'                                                                                                                                                                                                        ', N'Portsmouth                                                                                                                                                                                              ', N'OH                  ', N'45622               ', 14, N'000019    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (21, N'Ankorage                                                                                                                                                                                                ', N'1000 E Northern Lights Blvd                                                                                                                                                                             ', N'                                                                                                                                                                                                        ', N'Ankorage                                                                                                                                                                                                ', N'AK                  ', N'99508               ', 13, N'000020    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (28, N'Kokomo                                                                                                                                                                                                  ', N'606 North Dixon Road                                                                                                                                                                                    ', N'                                                                                                                                                                                                        ', N'Kokomo                                                                                                                                                                                                  ', N'IN                  ', N'46901               ', 10, N'000021    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (29, N'Kokomo                                                                                                                                                                                                  ', N'2822 S. Washington                                                                                                                                                                                      ', N'Maplecrest Plaza                                                                                                                                                                                        ', N'Kokomo                                                                                                                                                                                                  ', N'IN                  ', N'46902               ', 10, N'000022    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (30, N'Waverly                                                                                                                                                                                                 ', N'221 Waverly Plaza                                                                                                                                                                                       ', N'                                                                                                                                                                                                        ', N'Waverly                                                                                                                                                                                                 ', N'OH                  ', N'45690               ', 10, N'000023    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (33, N'Portsmouth                                                                                                                                                                                              ', N'812 Gay Street                                                                                                                                                                                          ', N'                                                                                                                                                                                                        ', N'Portsmouth                                                                                                                                                                                              ', N'OH                  ', N'45662               ', 1, N'000024    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (35, N'Maysville                                                                                                                                                                                               ', N'382 Market Square Dr                                                                                                                                                                                    ', N'                                                                                                                                                                                                        ', N'Maysville                                                                                                                                                                                               ', N'KY                  ', N'41056               ', 1, N'000025    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (36, N'Cincinnati                                                                                                                                                                                              ', N'2310 Ferguson Rd                                                                                                                                                                                        ', N'                                                                                                                                                                                                        ', N'Cincinnati                                                                                                                                                                                              ', N'OH                  ', N'45238               ', 2, N'000026    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (38, N'Cincinnati                                                                                                                                                                                              ', N'6166 Glenway Ave                                                                                                                                                                                        ', NULL, N'Cincinnati                                                                                                                                                                                              ', N'OH                  ', N'45211               ', 2, N'000027    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (39, N'Hillsdale                                                                                                                                                                                               ', N'291 W Carleton Rd                                                                                                                                                                                       ', NULL, N'Hillsdale                                                                                                                                                                                               ', N'MI                  ', N'49242               ', 16, N'000028    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (40, N'Jackson                                                                                                                                                                                                 ', N'1101 W Argyle St                                                                                                                                                                                        ', NULL, N'Jackson                                                                                                                                                                                                 ', N'MI                  ', N'49202               ', 16, N'000029    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (41, N'Jackson                                                                                                                                                                                                 ', N'3022 E Michigan Ave                                                                                                                                                                                     ', NULL, N'Jackson                                                                                                                                                                                                 ', N'MI                  ', N'49202               ', 16, N'000030    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (42, N'Lambertville                                                                                                                                                                                            ', N'3463 Sterns Rd                                                                                                                                                                                          ', NULL, N'Lambertville                                                                                                                                                                                            ', N'MI                  ', N'48144               ', 17, N'000031    ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (52, N'Anna                                                                                                                                                                                                    ', N'45 Plaza Dr                                                                                                                                                                                             ', N'                                                                                                                                                                                                        ', N'Anna                                                                                                                                                                                                    ', N'IL                  ', N'69206               ', 22, N'Anna000   ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (58, N'Batavia                                                                                                                                                                                                 ', N'100 SR 32                                                                                                                                                                                               ', N'                                                                                                                                                                                                        ', N'Batavia                                                                                                                                                                                                 ', N'OH                  ', N'45103               ', 25, N'000001a   ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (64, N'Bellvue                                                                                                                                                                                                 ', N'53 6th St                                                                                                                                                                                               ', N'                                                                                                                                                                                                        ', N'Bellvue                                                                                                                                                                                                 ', N'KY                  ', N'41073               ', 22, N'42        ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (70, N'E0001                                                                                                                                                                                                   ', N'                                                                                                                                                                                                        ', N'                                                                                                                                                                                                        ', N'                                                                                                                                                                                                        ', N'                    ', N'                    ', 21, N'Erlanger  ')
GO
INSERT [dbo].[tStore] ([StoreID], [Store], [Address1], [Address2], [City], [State], [Zip], [ManagerID], [StoreNumber]) VALUES (71, N'001001                                                                                                                                                                                                  ', N'                                                                                                                                                                                                        ', N'                                                                                                                                                                                                        ', N'                                                                                                                                                                                                        ', N'                    ', N'                    ', 21, N'Hogwarts  ')
GO
SET IDENTITY_INSERT [dbo].[tStore] OFF
GO
SET IDENTITY_INSERT [dbo].[tStore_StoreComponent] ON 

GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (23, 2, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (45, 3, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (67, 4, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (89, 5, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (111, 6, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (133, 7, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (155, 8, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (177, 9, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (199, 10, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (221, 11, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (243, 12, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (265, 13, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (287, 14, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (309, 15, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (331, 16, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (353, 17, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (375, 18, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (397, 19, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (419, 20, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (441, 21, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (463, 28, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (485, 29, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (507, 30, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (529, 33, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (551, 35, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (573, 36, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (595, 38, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (617, 39, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (639, 40, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (661, 41, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (683, 42, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (705, 52, 1)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (24, 2, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (46, 3, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (68, 4, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (90, 5, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (112, 6, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (134, 7, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (156, 8, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (178, 9, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (200, 10, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (222, 11, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (244, 12, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (266, 13, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (288, 14, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (310, 15, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (332, 16, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (354, 17, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (376, 18, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (398, 19, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (420, 20, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (442, 21, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (464, 28, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (486, 29, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (508, 30, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (530, 33, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (552, 35, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (574, 36, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (596, 38, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (618, 39, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (640, 40, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (662, 41, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (684, 42, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (706, 52, 2)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (25, 2, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (47, 3, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (69, 4, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (91, 5, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (113, 6, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (135, 7, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (157, 8, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (179, 9, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (201, 10, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (223, 11, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (245, 12, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (267, 13, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (289, 14, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (311, 15, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (333, 16, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (355, 17, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (377, 18, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (399, 19, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (421, 20, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (443, 21, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (465, 28, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (487, 29, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (509, 30, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (531, 33, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (553, 35, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (575, 36, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (597, 38, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (619, 39, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (641, 40, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (663, 41, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (685, 42, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (707, 52, 3)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (26, 2, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (48, 3, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (70, 4, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (92, 5, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (114, 6, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (136, 7, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (158, 8, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (180, 9, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (202, 10, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (224, 11, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (246, 12, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (268, 13, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (290, 14, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (312, 15, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (334, 16, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (356, 17, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (378, 18, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (400, 19, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (422, 20, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (444, 21, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (466, 28, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (488, 29, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (510, 30, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (532, 33, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (554, 35, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (576, 36, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (598, 38, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (620, 39, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (642, 40, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (664, 41, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (686, 42, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (708, 52, 4)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (27, 2, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (49, 3, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (71, 4, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (93, 5, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (115, 6, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (137, 7, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (159, 8, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (181, 9, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (203, 10, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (225, 11, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (247, 12, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (269, 13, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (291, 14, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (313, 15, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (335, 16, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (357, 17, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (379, 18, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (401, 19, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (423, 20, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (445, 21, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (467, 28, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (489, 29, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (511, 30, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (533, 33, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (555, 35, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (577, 36, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (599, 38, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (621, 39, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (643, 40, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (665, 41, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (687, 42, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (709, 52, 5)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (28, 2, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (50, 3, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (72, 4, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (94, 5, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (116, 6, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (138, 7, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (160, 8, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (182, 9, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (204, 10, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (226, 11, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (248, 12, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (270, 13, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (292, 14, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (314, 15, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (336, 16, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (358, 17, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (380, 18, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (402, 19, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (424, 20, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (446, 21, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (468, 28, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (490, 29, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (512, 30, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (534, 33, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (556, 35, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (578, 36, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (600, 38, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (622, 39, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (644, 40, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (666, 41, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (688, 42, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (710, 52, 6)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (29, 2, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (51, 3, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (73, 4, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (95, 5, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (117, 6, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (139, 7, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (161, 8, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (183, 9, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (205, 10, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (227, 11, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (249, 12, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (271, 13, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (293, 14, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (315, 15, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (337, 16, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (359, 17, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (381, 18, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (403, 19, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (425, 20, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (447, 21, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (469, 28, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (491, 29, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (513, 30, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (535, 33, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (557, 35, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (579, 36, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (601, 38, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (623, 39, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (645, 40, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (667, 41, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (689, 42, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (711, 52, 7)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (30, 2, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (52, 3, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (74, 4, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (96, 5, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (118, 6, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (140, 7, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (162, 8, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (184, 9, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (206, 10, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (228, 11, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (250, 12, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (272, 13, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (294, 14, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (316, 15, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (338, 16, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (360, 17, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (382, 18, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (404, 19, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (426, 20, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (448, 21, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (470, 28, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (492, 29, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (514, 30, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (536, 33, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (558, 35, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (580, 36, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (602, 38, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (624, 39, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (646, 40, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (668, 41, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (690, 42, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (712, 52, 8)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (31, 2, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (53, 3, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (75, 4, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (97, 5, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (119, 6, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (141, 7, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (163, 8, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (185, 9, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (207, 10, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (229, 11, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (251, 12, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (273, 13, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (295, 14, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (317, 15, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (339, 16, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (361, 17, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (383, 18, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (405, 19, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (427, 20, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (449, 21, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (471, 28, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (493, 29, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (515, 30, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (537, 33, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (559, 35, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (581, 36, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (603, 38, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (625, 39, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (647, 40, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (669, 41, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (691, 42, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (713, 52, 9)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (32, 2, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (54, 3, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (76, 4, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (98, 5, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (120, 6, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (142, 7, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (164, 8, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (186, 9, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (208, 10, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (230, 11, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (252, 12, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (274, 13, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (296, 14, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (318, 15, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (340, 16, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (362, 17, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (384, 18, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (406, 19, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (428, 20, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (450, 21, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (472, 28, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (494, 29, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (516, 30, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (538, 33, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (560, 35, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (582, 36, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (604, 38, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (626, 39, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (648, 40, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (670, 41, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (692, 42, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (714, 52, 10)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (33, 2, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (55, 3, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (77, 4, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (99, 5, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (121, 6, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (143, 7, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (165, 8, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (187, 9, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (209, 10, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (231, 11, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (253, 12, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (275, 13, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (297, 14, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (319, 15, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (341, 16, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (363, 17, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (385, 18, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (407, 19, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (429, 20, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (451, 21, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (473, 28, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (495, 29, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (517, 30, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (539, 33, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (561, 35, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (583, 36, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (605, 38, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (627, 39, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (649, 40, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (671, 41, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (693, 42, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (715, 52, 11)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (34, 2, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (56, 3, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (78, 4, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (100, 5, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (122, 6, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (144, 7, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (166, 8, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (188, 9, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (210, 10, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (232, 11, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (254, 12, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (276, 13, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (298, 14, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (320, 15, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (342, 16, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (364, 17, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (386, 18, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (408, 19, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (430, 20, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (452, 21, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (474, 28, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (496, 29, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (518, 30, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (540, 33, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (562, 35, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (584, 36, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (606, 38, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (628, 39, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (650, 40, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (672, 41, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (694, 42, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (716, 52, 12)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (35, 2, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (57, 3, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (79, 4, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (101, 5, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (123, 6, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (145, 7, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (167, 8, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (189, 9, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (211, 10, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (233, 11, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (255, 12, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (277, 13, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (299, 14, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (321, 15, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (343, 16, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (365, 17, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (387, 18, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (409, 19, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (431, 20, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (453, 21, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (475, 28, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (497, 29, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (519, 30, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (541, 33, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (563, 35, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (585, 36, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (607, 38, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (629, 39, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (651, 40, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (673, 41, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (695, 42, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (717, 52, 13)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (36, 2, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (58, 3, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (80, 4, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (102, 5, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (124, 6, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (146, 7, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (168, 8, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (190, 9, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (212, 10, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (234, 11, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (256, 12, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (278, 13, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (300, 14, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (322, 15, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (344, 16, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (366, 17, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (388, 18, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (410, 19, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (432, 20, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (454, 21, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (476, 28, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (498, 29, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (520, 30, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (542, 33, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (564, 35, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (586, 36, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (608, 38, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (630, 39, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (652, 40, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (674, 41, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (696, 42, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (718, 52, 14)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (37, 2, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (59, 3, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (81, 4, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (103, 5, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (125, 6, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (147, 7, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (169, 8, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (191, 9, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (213, 10, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (235, 11, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (257, 12, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (279, 13, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (301, 14, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (323, 15, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (345, 16, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (367, 17, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (389, 18, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (411, 19, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (433, 20, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (455, 21, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (477, 28, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (499, 29, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (521, 30, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (543, 33, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (565, 35, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (587, 36, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (609, 38, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (631, 39, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (653, 40, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (675, 41, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (697, 42, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (719, 52, 15)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (38, 2, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (60, 3, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (82, 4, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (104, 5, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (126, 6, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (148, 7, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (170, 8, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (192, 9, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (214, 10, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (236, 11, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (258, 12, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (280, 13, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (302, 14, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (324, 15, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (346, 16, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (368, 17, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (390, 18, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (412, 19, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (434, 20, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (456, 21, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (478, 28, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (500, 29, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (522, 30, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (544, 33, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (566, 35, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (588, 36, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (610, 38, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (632, 39, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (654, 40, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (676, 41, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (698, 42, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (720, 52, 16)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (39, 2, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (61, 3, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (83, 4, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (105, 5, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (127, 6, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (149, 7, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (171, 8, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (193, 9, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (215, 10, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (237, 11, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (259, 12, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (281, 13, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (303, 14, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (325, 15, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (347, 16, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (369, 17, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (391, 18, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (413, 19, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (435, 20, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (457, 21, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (479, 28, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (501, 29, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (523, 30, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (545, 33, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (567, 35, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (589, 36, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (611, 38, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (633, 39, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (655, 40, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (677, 41, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (699, 42, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (721, 52, 17)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (40, 2, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (62, 3, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (84, 4, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (106, 5, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (128, 6, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (150, 7, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (172, 8, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (194, 9, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (216, 10, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (238, 11, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (260, 12, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (282, 13, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (304, 14, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (326, 15, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (348, 16, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (370, 17, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (392, 18, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (414, 19, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (436, 20, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (458, 21, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (480, 28, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (502, 29, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (524, 30, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (546, 33, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (568, 35, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (590, 36, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (612, 38, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (634, 39, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (656, 40, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (678, 41, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (700, 42, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (722, 52, 18)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (41, 2, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (63, 3, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (85, 4, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (107, 5, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (129, 6, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (151, 7, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (173, 8, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (195, 9, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (217, 10, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (239, 11, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (261, 12, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (283, 13, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (305, 14, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (327, 15, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (349, 16, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (371, 17, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (393, 18, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (415, 19, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (437, 20, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (459, 21, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (481, 28, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (503, 29, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (525, 30, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (547, 33, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (569, 35, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (591, 36, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (613, 38, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (635, 39, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (657, 40, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (679, 41, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (701, 42, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (723, 52, 19)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (42, 2, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (64, 3, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (86, 4, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (108, 5, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (130, 6, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (152, 7, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (174, 8, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (196, 9, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (218, 10, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (240, 11, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (262, 12, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (284, 13, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (306, 14, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (328, 15, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (350, 16, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (372, 17, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (394, 18, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (416, 19, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (438, 20, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (460, 21, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (482, 28, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (504, 29, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (526, 30, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (548, 33, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (570, 35, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (592, 36, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (614, 38, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (636, 39, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (658, 40, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (680, 41, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (702, 42, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (724, 52, 20)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (43, 2, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (65, 3, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (87, 4, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (109, 5, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (131, 6, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (153, 7, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (175, 8, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (197, 9, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (219, 10, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (241, 11, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (263, 12, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (285, 13, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (307, 14, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (329, 15, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (351, 16, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (373, 17, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (395, 18, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (417, 19, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (439, 20, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (461, 21, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (483, 28, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (505, 29, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (527, 30, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (549, 33, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (571, 35, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (593, 36, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (615, 38, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (637, 39, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (659, 40, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (681, 41, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (703, 42, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (725, 52, 21)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (44, 2, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (66, 3, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (88, 4, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (110, 5, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (132, 6, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (154, 7, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (176, 8, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (198, 9, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (220, 10, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (242, 11, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (264, 12, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (286, 13, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (308, 14, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (330, 15, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (352, 16, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (374, 17, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (396, 18, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (418, 19, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (440, 20, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (462, 21, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (484, 28, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (506, 29, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (528, 30, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (550, 33, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (572, 35, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (594, 36, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (616, 38, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (638, 39, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (660, 40, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (682, 41, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (704, 42, 23)
GO
INSERT [dbo].[tStore_StoreComponent] ([Store_StoreComponentID], [StoreID], [StoreComponentID]) VALUES (726, 52, 23)
GO
SET IDENTITY_INSERT [dbo].[tStore_StoreComponent] OFF
GO
SET IDENTITY_INSERT [dbo].[tStoreComponent] ON 

GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (2, N'Bakery                                                                                              ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (19, N'Bank                                                                                                ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (14, N'Butcher                                                                                             ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (3, N'Coffee Shop                                                                                         ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (16, N'Computer Store                                                                                      ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (7, N'Corporate Offices                                                                                   ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (15, N'Customer Service                                                                                    ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (13, N'Dairy                                                                                               ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (1, N'Deli                                                                                                ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (17, N'Electronics Store                                                                                   ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (23, N'Ethnic Foods                                                                                        ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (21, N'Florist                                                                                             ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (12, N'Frozen Foods                                                                                        ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (18, N'Home Goods Store                                                                                    ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (5, N'Jewelry                                                                                             ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (11, N'Liquor Store                                                                                        ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (10, N'Natural Foods                                                                                       ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (9, N'Parking Lot                                                                                         ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (8, N'Regional Offices                                                                                    ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (6, N'Salad Bar                                                                                           ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (4, N'Seafood                                                                                             ')
GO
INSERT [dbo].[tStoreComponent] ([StoreComponentID], [StoreComponent]) VALUES (20, N'Self-Checkout                                                                                       ')
GO
SET IDENTITY_INSERT [dbo].[tStoreComponent] OFF
GO
SET IDENTITY_INSERT [dbo].[tStoreStatus] ON 

GO
INSERT [dbo].[tStoreStatus] ([StoreStatusID], [StoreStatus], [IsOpenForBusiness], [IsClosedForever]) VALUES (1, N'Open                                                                                                ', 1, 0)
GO
INSERT [dbo].[tStoreStatus] ([StoreStatusID], [StoreStatus], [IsOpenForBusiness], [IsClosedForever]) VALUES (2, N'Scheduled Close                                                                                     ', 0, 0)
GO
INSERT [dbo].[tStoreStatus] ([StoreStatusID], [StoreStatus], [IsOpenForBusiness], [IsClosedForever]) VALUES (3, N'On Fire                                                                                             ', 0, 0)
GO
INSERT [dbo].[tStoreStatus] ([StoreStatusID], [StoreStatus], [IsOpenForBusiness], [IsClosedForever]) VALUES (4, N'Unscheduled Close                                                                                   ', 0, 0)
GO
INSERT [dbo].[tStoreStatus] ([StoreStatusID], [StoreStatus], [IsOpenForBusiness], [IsClosedForever]) VALUES (5, N'Health Inspection                                                                                   ', 0, 0)
GO
INSERT [dbo].[tStoreStatus] ([StoreStatusID], [StoreStatus], [IsOpenForBusiness], [IsClosedForever]) VALUES (6, N'Under Construction                                                                                  ', 0, 0)
GO
INSERT [dbo].[tStoreStatus] ([StoreStatusID], [StoreStatus], [IsOpenForBusiness], [IsClosedForever]) VALUES (7, N'Closed Forever                                                                                      ', 0, 1)
GO
INSERT [dbo].[tStoreStatus] ([StoreStatusID], [StoreStatus], [IsOpenForBusiness], [IsClosedForever]) VALUES (8, N'Torn Down                                                                                           ', 0, 1)
GO
INSERT [dbo].[tStoreStatus] ([StoreStatusID], [StoreStatus], [IsOpenForBusiness], [IsClosedForever]) VALUES (9, N'Partial Remodel', 1, 0)
GO
INSERT [dbo].[tStoreStatus] ([StoreStatusID], [StoreStatus], [IsOpenForBusiness], [IsClosedForever]) VALUES (10, N'Full Remodel', 0, 0)
GO
SET IDENTITY_INSERT [dbo].[tStoreStatus] OFF
GO
SET IDENTITY_INSERT [dbo].[tTransactionDetail] ON 

GO
INSERT [dbo].[tTransactionDetail] ([TransactionDetailID], [TransactionID], [ProductID], [QtyOfProduct], [PricePerSellableUnitAsMarked], [TotalPrice], [Comment], [CouponDetailID], [PricePerSellableUnitToTheCustomer]) VALUES (29772507, NULL, 134, 3, 2.5200, NULL, N'', 0, 2.5200)
GO
SET IDENTITY_INSERT [dbo].[tTransactionDetail] OFF
GO
SET IDENTITY_INSERT [dbo].[tTransactionType] ON 

GO
INSERT [dbo].[tTransactionType] ([TransactionTypeID], [TransactionType]) VALUES (1, N'Purchase')
GO
INSERT [dbo].[tTransactionType] ([TransactionTypeID], [TransactionType]) VALUES (2, N'Refund')
GO
INSERT [dbo].[tTransactionType] ([TransactionTypeID], [TransactionType]) VALUES (3, N'Inquiry')
GO
INSERT [dbo].[tTransactionType] ([TransactionTypeID], [TransactionType]) VALUES (4, N'Exchange')
GO
SET IDENTITY_INSERT [dbo].[tTransactionType] OFF
GO
SET IDENTITY_INSERT [dbo].[tUOM] ON 

GO
INSERT [dbo].[tUOM] ([UOMID], [UOM]) VALUES (1, N'1')
GO
INSERT [dbo].[tUOM] ([UOMID], [UOM]) VALUES (2, N'FL OZ')
GO
INSERT [dbo].[tUOM] ([UOMID], [UOM]) VALUES (3, N'G')
GO
INSERT [dbo].[tUOM] ([UOMID], [UOM]) VALUES (4, N'GAL')
GO
INSERT [dbo].[tUOM] ([UOMID], [UOM]) VALUES (5, N'KG')
GO
INSERT [dbo].[tUOM] ([UOMID], [UOM]) VALUES (6, N'L')
GO
INSERT [dbo].[tUOM] ([UOMID], [UOM]) VALUES (7, N'LB')
GO
INSERT [dbo].[tUOM] ([UOMID], [UOM]) VALUES (8, N'ML')
GO
INSERT [dbo].[tUOM] ([UOMID], [UOM]) VALUES (9, N'OZ')
GO
INSERT [dbo].[tUOM] ([UOMID], [UOM]) VALUES (10, N'PT')
GO
INSERT [dbo].[tUOM] ([UOMID], [UOM]) VALUES (11, N'QT')
GO
SET IDENTITY_INSERT [dbo].[tUOM] OFF
GO
/****** Object:  Index [IX_tContainer]    Script Date: 2/5/2017 5:31:45 PM ******/
ALTER TABLE [dbo].[tContainer] ADD  CONSTRAINT [IX_tContainer] UNIQUE NONCLUSTERED 
(
	[ContainerID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO
SET ANSI_PADDING ON

GO
/****** Object:  Index [IX_tIngredient]    Script Date: 2/5/2017 5:31:45 PM ******/
ALTER TABLE [dbo].[tIngredient] ADD  CONSTRAINT [IX_tIngredient] UNIQUE NONCLUSTERED 
(
	[Ingredient] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO
/****** Object:  Index [IX_tProductIngredient]    Script Date: 2/5/2017 5:31:45 PM ******/
ALTER TABLE [dbo].[tProductIngredient] ADD  CONSTRAINT [IX_tProductIngredient] UNIQUE NONCLUSTERED 
(
	[IngredientID] ASC,
	[ProductID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO
ALTER TABLE [dbo].[tCoupon] ADD  CONSTRAINT [DF_tCoupon_MinimumPurchaseRequirement]  DEFAULT ((0)) FOR [MinimumPurchaseRequirement]
GO
ALTER TABLE [dbo].[tCouponDetail] ADD  CONSTRAINT [DF_tCouponDetail_MaxQty]  DEFAULT ((1)) FOR [MaxQtyToPurchase]
GO
ALTER TABLE [dbo].[tCouponDetail] ADD  CONSTRAINT [DF_tCouponDetail_MinQty]  DEFAULT ((1)) FOR [MinQtyToPurchase]
GO
ALTER TABLE [dbo].[tEmpl] ADD  CONSTRAINT [DF_tEmpl_DateStamp]  DEFAULT (getdate()) FOR [DateStamp]
GO
ALTER TABLE [dbo].[tEmplHistory] ADD  CONSTRAINT [DF_tEmplHistory_StartDate]  DEFAULT (getdate()) FOR [StartDate]
GO
ALTER TABLE [dbo].[tEmplHistory] ADD  CONSTRAINT [DF_Table_1_StoreStatusID]  DEFAULT ((1)) FOR [EmplStatusID]
GO
ALTER TABLE [dbo].[tEmplHistory] ADD  CONSTRAINT [DF_tEmplHistory_DateStamp]  DEFAULT (getdate()) FOR [DateStamp]
GO
ALTER TABLE [dbo].[tManufacturer] ADD  CONSTRAINT [DF_tManufacturer_IsSupplier]  DEFAULT ((0)) FOR [IsSupplier]
GO
ALTER TABLE [dbo].[tProductIngredient] ADD  CONSTRAINT [DF_tProductIngredient_lessThan2Percent]  DEFAULT ((0)) FOR [containsLessThanSomePerCent]
GO
ALTER TABLE [dbo].[tProductPriceHist] ADD  CONSTRAINT [DF_tProductPriceHist_StartDate]  DEFAULT (getdate()) FOR [StartDate]
GO
ALTER TABLE [dbo].[tProductPriceHist] ADD  CONSTRAINT [DF_tProductPriceHist_DateTimeStamp]  DEFAULT (getdate()) FOR [DateTimeStamp]
GO
ALTER TABLE [dbo].[tStoreHistory] ADD  CONSTRAINT [DF_tStoreHistory_StartDate]  DEFAULT (getdate()) FOR [StartDate]
GO
ALTER TABLE [dbo].[tStoreHistory] ADD  CONSTRAINT [DF_tStoreHistory_StoreStatusID]  DEFAULT ((1)) FOR [StoreStatusID]
GO
ALTER TABLE [dbo].[tStoreHistory] ADD  CONSTRAINT [DF_tStoreHistory_DateStamp]  DEFAULT (getdate()) FOR [DateStamp]
GO
ALTER TABLE [dbo].[tTransaction] ADD  CONSTRAINT [DF_tTransaction_DateEntered]  DEFAULT (getdate()) FOR [DateEntered]
GO
ALTER TABLE [dbo].[tCoupon]  WITH CHECK ADD  CONSTRAINT [FK_tCoupon_tCouponSource] FOREIGN KEY([CouponSourceID])
REFERENCES [dbo].[tCouponSource] ([CouponSourceID])
GO
ALTER TABLE [dbo].[tCoupon] CHECK CONSTRAINT [FK_tCoupon_tCouponSource]
GO
ALTER TABLE [dbo].[tCouponDetail]  WITH CHECK ADD  CONSTRAINT [FK_tCouponDetail_tCoupon] FOREIGN KEY([CouponID])
REFERENCES [dbo].[tCoupon] ([CouponID])
ON DELETE CASCADE
GO
ALTER TABLE [dbo].[tCouponDetail] CHECK CONSTRAINT [FK_tCouponDetail_tCoupon]
GO
ALTER TABLE [dbo].[tEmpl]  WITH CHECK ADD  CONSTRAINT [FK_tEmpl_tEmplTitle] FOREIGN KEY([EmplTitleID])
REFERENCES [dbo].[tEmplTitle] ([EmplTitleID])
ON UPDATE SET NULL
ON DELETE SET NULL
GO
ALTER TABLE [dbo].[tEmpl] CHECK CONSTRAINT [FK_tEmpl_tEmplTitle]
GO
ALTER TABLE [dbo].[tEmpl]  WITH CHECK ADD  CONSTRAINT [FK_tEmpl_tStore] FOREIGN KEY([StoreID])
REFERENCES [dbo].[tStore] ([StoreID])
ON UPDATE SET NULL
ON DELETE SET NULL
GO
ALTER TABLE [dbo].[tEmpl] CHECK CONSTRAINT [FK_tEmpl_tStore]
GO
ALTER TABLE [dbo].[tProductPriceHist]  WITH CHECK ADD  CONSTRAINT [FK_tProductPriceHist_tProduct] FOREIGN KEY([ProductID])
REFERENCES [dbo].[tProduct] ([ProductID])
ON DELETE CASCADE
GO
ALTER TABLE [dbo].[tProductPriceHist] CHECK CONSTRAINT [FK_tProductPriceHist_tProduct]
GO
ALTER TABLE [dbo].[tProductPriceHist]  WITH CHECK ADD  CONSTRAINT [FK_tProductPriceHist_tStore] FOREIGN KEY([StoreID])
REFERENCES [dbo].[tStore] ([StoreID])
ON DELETE CASCADE
GO
ALTER TABLE [dbo].[tProductPriceHist] CHECK CONSTRAINT [FK_tProductPriceHist_tStore]
GO
ALTER TABLE [dbo].[tStore_StoreComponent]  WITH CHECK ADD  CONSTRAINT [FK_tStore_StoreComponent_tStore_StoreComponent] FOREIGN KEY([StoreID])
REFERENCES [dbo].[tStore] ([StoreID])
ON DELETE CASCADE
GO
ALTER TABLE [dbo].[tStore_StoreComponent] CHECK CONSTRAINT [FK_tStore_StoreComponent_tStore_StoreComponent]
GO
ALTER TABLE [dbo].[tStore_StoreComponent]  WITH CHECK ADD  CONSTRAINT [FK_tStore_StoreComponent_tStoreComponent] FOREIGN KEY([StoreComponentID])
REFERENCES [dbo].[tStoreComponent] ([StoreComponentID])
ON DELETE CASCADE
GO
ALTER TABLE [dbo].[tStore_StoreComponent] CHECK CONSTRAINT [FK_tStore_StoreComponent_tStoreComponent]
GO
ALTER TABLE [dbo].[tTransactionDetail]  WITH CHECK ADD  CONSTRAINT [TransactionID_fk1] FOREIGN KEY([TransactionID])
REFERENCES [dbo].[tTransaction] ([TransactionID])
ON DELETE CASCADE
GO
ALTER TABLE [dbo].[tTransactionDetail] CHECK CONSTRAINT [TransactionID_fk1]
GO
/****** Object:  StoredProcedure [dbo].[AddProductsToProductPriceHistForOneStore]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[AddProductsToProductPriceHistForOneStore]
(
@StoreID as int
)
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;

Insert into tProductPriceHist(ProductID, StoreID, pricepersellableunit, startDate) select productID, storeid , pricepersellableunit, getdate() from tstore as S, tproduct as p where storeID = @storeID
END

GO
/****** Object:  StoredProcedure [dbo].[spAddCouponAndDetail]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- ====================================================================================
-- Author:		Bill Nicholson
-- Create date: 
-- Description:	Add a Coupon and one corresponding Coupon Detail
-- Send back the CouponID so it can be used to add more details if necessary
--  The CouponID is a zero for the first time I call this, then it's 1 behind for the other coupons in the batch,
--   but the data in tCoupon and tCouponDetail is correct. See Coupon.generateRandomCoupons in the code.
-- ====================================================================================
CREATE PROCEDURE [dbo].[spAddCouponAndDetail] 

	@CouponID int  OUTPUT,
	@Coupon nChar(100),
	@CouponSourceID int,
	@CouponDescription varChar(50), 
	@MaxQtyToPurchase int, 
	@MinQtyToPurchase int, 
	@ProductID int, 
	@DiscountTypeID int,
	@StartDate varChar(20),
	@ThroughDate varChar(20),
	@PercentageDiscount int,
	@AmountOff money

AS
BEGIN
	BEGIN TRAN
		INSERT INTO tCoupon (coupon,   startDate,  ThroughDate,  CouponSourceID,  CouponDescription) 
		              VALUES(@Coupon, @StartDate, @ThroughDate, @CouponSourceID, @CouponDescription )
		SELECT @CouponID = @@IDENTITY
		INSERT INTO tCouponDetail (CouponID,      MaxQtyToPurchase,  MinQtyToPurchase, ProductID,   DiscountTypeID, PercentageDiscount,  AmountOff ) 
		                    VALUES(@@IDENtITY,   @MaxQtyToPurchase, @MinQtyToPurchase, @ProductID, @DiscountTypeID, @PercentageDiscount, @AmountOff )
	COMMIT
END

GO
/****** Object:  StoredProcedure [dbo].[spAddEmpl]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	Add an Employee and update the Employee History Table at the same time
-- =============================================
CREATE PROCEDURE [dbo].[spAddEmpl]
	@FirstName nchar(50),
	@LastName nchar(50),
	@Empl nchar(200),			-- Make sure this is at least as big as tEmpl.empl
	@StoreID int,
	@EmplTitleID int,
	@EmplStatusID int
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;

    -- Insert statements for procedure here
	Begin Transaction
		INSERT INTO tEmpl(FirstName, LastName, Empl, StoreID, EmplTitleID, isSelfScan) VALUES (@FirstName, @LastName, @Empl, @StoreID, @EmplTitleID, 0)
		-- Get the ID of the new Employee we just added
		DECLARE @emplID int
		SELECT @emplID = SCOPE_IDENTITY()
		-- Call spUpdateEmplStatus to make the employee available for work
		SELECT @EmplStatusID = (SELECT TOP 1 EmplStatusID from fGetEmplStatus_CanWork())

		-- We can't pass a function call to a stored procedure. We need an intermediate variable? How dumb.
		Declare @foo datetime
		Select @foo = (CONVERT (datetime, SYSDATETIME()))
		
		Exec spUpdateEmplStatus @emplID, @EmplStatusID, @foo
	--end try
	Commit
	--begin catch
--		SELECT
--			ERROR_NUMBER() AS ErrorNumber,
--			ERROR_SEVERITY() AS ErrorSeverity,
--			ERROR_STATE() AS ErrorState,
--			ERROR_PROCEDURE() AS ErrorProcedure,
--			ERROR_LINE() AS ErrorLine,
--			ERROR_MESSAGE() AS ErrorMessage;	
--		end catch
END

GO
/****** Object:  StoredProcedure [dbo].[spAddProductPriceHist]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[spAddProductPriceHist]
	@ProductPriceHistID int OUTPUT,
	@ProductID int,
	@StoreID int,
	@StartDate DateTime,
	@PricePerSellableUnit money

AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from interfering with SELECT statements.
	SET NOCOUNT ON;

	Begin try 
		BEGIN TRAN
			INSERT INTO tProductPriceHist(ProductID, StoreID, StartDate, PricePerSellableUnit) VALUES (@ProductID, @StoreID, @StartDate, @PricePerSellableUnit)
			SELECT @ProductPriceHistID = @@IDENTITY
		COMMIT
	end try
	begin catch
		SELECT
			ERROR_NUMBER() AS ErrorNumber
			,ERROR_SEVERITY() AS ErrorSeverity
			,ERROR_STATE() AS ErrorState
			,ERROR_PROCEDURE() AS ErrorProcedure
			,ERROR_LINE() AS ErrorLine
			,ERROR_MESSAGE() AS ErrorMessage;	

			ROLLBACK

		end catch
END

GO
/****** Object:  StoredProcedure [dbo].[spAddStore]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[spAddStore]
    @StoreNumber nchar(10),
	@Store nchar(200),
	@Address1 nchar(200),
	@Address2 nchar(200),
	@City nchar(200),
	@State nchar(2),
	@Zip nchar(20),
	@ManagerID int
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;

    -- Insert statements for procedure here
	Begin try 
		INSERT INTO tStore(StoreNumber, Store, Address1, Address2, City, State, Zip, ManagerID) VALUES (@StoreNumber, @Store, @Address1, @Address2, @City, @State, @Zip, @ManagerID)
	end try
	begin catch
		SELECT
			ERROR_NUMBER() AS ErrorNumber
			,ERROR_SEVERITY() AS ErrorSeverity
			,ERROR_STATE() AS ErrorState
			,ERROR_PROCEDURE() AS ErrorProcedure
			,ERROR_LINE() AS ErrorLine
			,ERROR_MESSAGE() AS ErrorMessage;	
		end catch
END

GO
/****** Object:  StoredProcedure [dbo].[spAddStoreWithStoreStatus]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[spAddStoreWithStoreStatus]
    @StoreNumber nchar(10),
	@Store nchar(200),
	@Address1 nchar(200),
	@Address2 nchar(200),
	@City nchar(200),
	@State nchar(2),
	@Zip nchar(20),
	@ManagerID int,
	@StoreStatusID int
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;

    -- Insert statements for procedure here
	Begin try 
		INSERT INTO tStore(StoreNumber, Store, Address1, Address2, City, State, Zip, ManagerID) VALUES (@StoreNumber, @Store, @Address1, @Address2, @City, @State, @Zip, @ManagerID)
		Declare @storeID int
		-- Get the ID of the new store
		SELECT @storeID = SCOPE_IDENTITY()
		-- Get the current date/time for the store status record
		declare @foo DateTime
		select @foo = getdate()
		exec spUpdateStoreStatus @storeID, @storeStatusID, @foo
	end try
	begin catch
		SELECT
			ERROR_NUMBER() AS ErrorNumber
			,ERROR_SEVERITY() AS ErrorSeverity
			,ERROR_STATE() AS ErrorState
			,ERROR_PROCEDURE() AS ErrorProcedure
			,ERROR_LINE() AS ErrorLine
			,ERROR_MESSAGE() AS ErrorMessage;	
		end catch
END

GO
/****** Object:  StoredProcedure [dbo].[spAddTransactionAndDetail]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- ====================================================================================
-- Author:		Bill Nicholson
-- Create date: 
-- Description:	Add a Transaction and one corresponding Transaction Detail
-- Send back the TransactionID so it can be used to add more details if necessary
-- ====================================================================================
CREATE PROCEDURE [dbo].[spAddTransactionAndDetail]
	@LoyaltyID int,
	@DateOfTransaction varChar(20),
	@TimeOfTransaction varChar(20),
	@TransactionTypeID int,
	@StoreID int,
	@EmplID int,
	@ProductID int, 
	@Qty int, 
	@PricePerSellableUnitAsMarked varChar(15),
	@PricePerSellableUnitToTheCustomer varChar(15),
	@TransactionComment varChar(100),
	@TransactionDetailComment varChar(100),
	@couponDetailID int,
	@TransactionID int  OUTPUT
AS
BEGIN
	BEGIN TRAN
		INSERT INTO tTransaction (TimeOFTransaction, DateOfTransaction, StoreID, LoyaltyID, TransactionTypeID, EmplID, Comment) 
		       VALUES(@TimeOfTransaction, @DateOfTransaction, @StoreID, @LoyaltyID, @TransactionTypeID, @EmplID, @TransactionComment)
		SELECT @TransactionID = @@IDENTITY
		INSERT INTO tTransactionDetail (TransactionID, ProductID,  QtyOfProduct, PricePerSellableUnitAsMarked,  PricePerSellableUnitToTheCustomer, Comment,                    couponDetailID) 
		                         VALUES(@@IDENtITY,    @ProductID, @Qty,         @PricePerSellableUnitAsMarked, @PricePerSellableUnitToTheCustomer, @TransactionDetailComment, @couponDetailID)
	COMMIT
END

GO
/****** Object:  StoredProcedure [dbo].[spAddTransactionDetail]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- ====================================================================================
-- Author:		Bill Nicholson
-- Create date: 
-- Description:	Add a Transaction and one corresponding Transaction Detail
-- Send back the TransactionID so it can be used to add more details if necessary
-- ToDo: Call this sp from spAddTransactionAndDetail. There's redundant code in there. 
-- ====================================================================================
CREATE PROCEDURE [dbo].[spAddTransactionDetail] 

	@TransactionID int,
	@ProductID int, 
	@Qty int, 
	@PricePerSellableUnitAsMarked varChar(15),
	@PricePerSellableUnitToTheCustomer varChar(15),
	@TransactionDetailComment varChar(100),
	@couponDetailID int,
	@TransactionDetailID int  OUTPUT

AS
BEGIN
	BEGIN TRAN
		INSERT INTO tTransactionDetail (TransactionID,  ProductID,  QtyOfProduct, PricePerSellableUnitAsMarked,  PricePerSellableUnitToTheCustomer,  Comment,                   couponDetailID) 
		                         VALUES(@TransactionID, @ProductID, @Qty,         @PricePerSellableUnitAsMarked, @PricePerSellableUnitToTheCustomer, @TransactionDetailComment, @couponDetailID)
		SELECT @TransactionDetailID = @@IDENTITY
	COMMIT
END

GO
/****** Object:  StoredProcedure [dbo].[spCopyEmplHistoryFromEmplTable]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	Make all employees available for work on a specific date. Populate tEmplHistory with tEmpl for all employees
--  
-- =============================================
CREATE PROCEDURE [dbo].[spCopyEmplHistoryFromEmplTable]
(
@startDate as DateTime
)
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;

--	delete tProductPriceHist
--	Insert into tProductPriceHist(ProductID, StoreID, pricepersellableunit, startDate) select productID, storeid , Initialpricepersellableunit, getdate() from tstore as S, tproduct as p
	Declare @emplStatusID as int
	set @emplStatusID = (select top 1 emplStatusID from tEmplStatus where CanWork = 1)
	Insert into tEmplHistory(EmplID, EmplStatusID, startDate) select emplID, @emplStatusID, @startDate from tEmpl 
END

GO
/****** Object:  StoredProcedure [dbo].[spCopyProductPriceHistFromProductTable]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	populate tProductPriceHist with tProduct.InitialPricePerSellableUnit for all stores
--  
-- =============================================
CREATE PROCEDURE [dbo].[spCopyProductPriceHistFromProductTable]
(
@startDate as DateTime
)
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;

--	delete tProductPriceHist
--	Insert into tProductPriceHist(ProductID, StoreID, pricepersellableunit, startDate) select productID, storeid , Initialpricepersellableunit, getdate() from tstore as S, tproduct as p
	Insert into tProductPriceHist(ProductID, StoreID, pricepersellableunit, startDate) select productID, storeid , Initialpricepersellableunit, @startDate from tstore as S, tproduct as p
END

GO
/****** Object:  StoredProcedure [dbo].[spCopyStoreHistoryFromStoreTable]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	Make all stores open for business on a specific date. Populate tStoreHistory with tStore for all stores
--  
-- =============================================
CREATE PROCEDURE [dbo].[spCopyStoreHistoryFromStoreTable]
(
@startDate as DateTime
)
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;

	Declare @storeStatusID as int
	set @storeStatusID = (select top 1 storeStatusID from tStoreStatus where IsOpenForBusiness = 1)
	Insert into tStoreHistory(StoreID, StoreStatusID, startDate) select StoreID, @StoreStatusID, @startDate from tStore 
END

GO
/****** Object:  StoredProcedure [dbo].[spDeleteStoreHistoryAndUpdateALLStoreStatus]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE  PROCEDURE [dbo].[spDeleteStoreHistoryAndUpdateALLStoreStatus]
	@StoreStatusID int,
	@StartDate nchar(20)
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;

Begin Transaction
DELETE tStoreHistory
INSERT INTO tStoreHistory(StoreID, StoreStatusID, StartDate) Select StoreID, @StoreStatusID, @StartDate from tStore
Commit

END

GO
/****** Object:  StoredProcedure [dbo].[spInitEmplHistory]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[spInitEmplHistory]
AS
BEGIN
	SET NOCOUNT ON;
INSERT INTO tEmplHistory(EmplID) (Select EmplID from tEmpl)
END

GO
/****** Object:  StoredProcedure [dbo].[spInitializeProductPriceHistAndCopyFromFromProductTable]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	Zap the tProductPriceHist table and repopulate it with tProduct.InitialPricePerSellableUnit for all stores
-- This is very destructive and you should be careful. 
-- =============================================
CREATE PROCEDURE [dbo].[spInitializeProductPriceHistAndCopyFromFromProductTable]
(
@myStartDate as DateTime
)
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;

	delete tProductPriceHist

	DECLARE	@return_value int
	EXEC	@return_value = [dbo].[spCopyProductPriceHistFromProductTable] @startDate = @myStartDate

--	Insert into tProductPriceHist(ProductID, StoreID, pricepersellableunit, startDate) select productID, storeid , Initialpricepersellableunit, getdate() from tstore as S, tproduct as p
--	Insert into tProductPriceHist(ProductID, StoreID, pricepersellableunit, startDate) select productID, storeid , Initialpricepersellableunit, @startDate from tstore as S, tproduct as p
END

GO
/****** Object:  StoredProcedure [dbo].[spInitializeProductPriceHistForOneProduct]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	Append from the tProduct.InitialPricePerSellableUnit for all stores for one specific product
-- =============================================
CREATE PROCEDURE [dbo].[spInitializeProductPriceHistForOneProduct]
(
@ProductID as int
)
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;

	Insert into tProductPriceHist(ProductID, StoreID, pricepersellableunit, startDate) 
	            select productID, storeid , Initialpricepersellableunit, getdate() from tstore as S, tproduct as P where P.ProductID = @ProductID
END

GO
/****** Object:  StoredProcedure [dbo].[spInitStoreHistory]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[spInitStoreHistory]
AS
BEGIN
	SET NOCOUNT ON;
INSERT INTO tStoreHistory(StoreID) (Select StoreID from tStore)
END

GO
/****** Object:  StoredProcedure [dbo].[spPopulateIngredientTableAndProductIngredientTable]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	Run this one time to populate the Ingredient table and the ProductIngredient table 
--  with the CSV Ingredients column in tProduct. Then delete the Ingredients column in tProduct	
-- ************** This doesn't work perfectly because the ingredients in the tProduct.Ingredients attribute are not consistently delimited ****************
-- =============================================
CREATE  PROCEDURE [dbo].[spPopulateIngredientTableAndProductIngredientTable]
AS
BEGIN
	SET NOCOUNT ON
declare @RowNum int, @ProductId int, @Ingredients nvarchar(2000)
declare @items TABLE (item varchar(1000))
declare @tmpIngredient varchar(1000)
DECLARE @MyCursor CURSOR
DECLARE @IngredientID int
print '1'
select @ProductId=MAX(ProductId) FROM tProduct     --start with the highest ID
Select @RowNum = Count(*) From tProduct      --get total number of records
WHILE @RowNum > 0                          --loop until no more records
BEGIN   
	
    select @Ingredients = ingredients from tProduct where ProductID= @ProductID												--get other info from that row
	print @ingredients
	Insert into @items select * from dbo.Split(@Ingredients, ',')
	select * from @items
	Insert into tIngredient(Ingredient) Select LTRIM(RTRIM(Item)) from @Items

	SET @MyCursor = CURSOR FOR select Item from @Items

    Open @MyCursor
	Fetch next from @MyCursor into @tmpIngredient
	WHILE @@FETCH_STATUS = 0
    BEGIN
		begin try
		Select @tmpIngredient = rtrim(ltrim(@tmpIngredient))
		--if ((substring(@tmpIngredient, 1, 1) = '(') AND (substring(@tmpIngredient, 1, LEN(@TmpIngredient)) = ')') )
		--begin
		--	select @tmpIngredient = substring(@tmpIngredient, 2, LEN(@tmpIngredient)-1)
		--end
			SELECT @IngredientID = IngredientID from tIngredient where Ingredient = @tmpIngredient
			print '---------------'
			print @tmpIngredient
			Print @ProductID 
			Print @IngredientID
			Insert into tProductIngredient(ProductID, IngredientID) Values(@ProductID, @IngredientID)
		end try
		begin catch 
			print ERROR_MESSAGE();
  		end catch
		Fetch next from @MyCursor into @tmpIngredient
	END
    CLOSE @MyCursor ;
    DEALLOCATE @MyCursor; 
	delete @Items
    select top 1 @ProductId=ProductID from tProduct where ProductID < @ProductID order by ProductID desc		--get the next one
    set @RowNum = @RowNum - 1																					--decrease count
END
END

GO
/****** Object:  StoredProcedure [dbo].[spUpdateALLStoreStatus]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
Create  PROCEDURE [dbo].[spUpdateALLStoreStatus]
	@StoreStatusID int,
	@StartDate DateTime
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;
	INSERT INTO tStoreHistory(StoreID, StoreStatusID, StartDate) VALUES((Select StoreID from tStore), @StoreStatusID, @StartDate)
END

GO
/****** Object:  StoredProcedure [dbo].[spUpdateEmplStatus]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	Update Employee Status
-- =============================================
CREATE PROCEDURE [dbo].[spUpdateEmplStatus]
	@EmplID int,
	@EmplStatusID int,
	@StartDate DateTime
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from interfering with SELECT statements.
	SET NOCOUNT ON;
	INSERT INTO tEmplHistory(EmplID, EmplStatusID, StartDate) VALUES(@EmplID, @EmplStatusID, @StartDate)
END

GO
/****** Object:  StoredProcedure [dbo].[spUpdateStoreStatus]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- 
-- Description:	<Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[spUpdateStoreStatus]
	@StoreID int,
	@StoreStatusID int,
	@StartDate DateTime
AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;
	INSERT INTO tStoreHistory(StoreID, StoreStatusID, StartDate) VALUES(@StoreID, @StoreStatusID, @StartDate)
END

GO
/****** Object:  StoredProcedure [dbo].[zDeleteAllHistoryData]    Script Date: 2/5/2017 5:31:45 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		Bill Nicholson
-- Description:	Delete history data. This is exactly the data that is generated by the GroceryStoreSimulator app
-- =============================================
CREATE PROCEDURE [dbo].[zDeleteAllHistoryData]
AS
BEGIN
	delete tTransaction
	delete tProductPriceHist
	delete tEmplHistory
	delete tCoupon
	delete tStoreHistory

END

GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Buy one get one free' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tDiscountType', @level2type=N'COLUMN',@level2name=N'IsBOGO'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Employee ID. unique' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tEmpl', @level2type=N'COLUMN',@level2name=N'Empl'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Employee Title' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tEmpl', @level2type=N'CONSTRAINT',@level2name=N'FK_tEmpl_tEmplTitle'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Store to which employee is assigned' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tEmpl', @level2type=N'CONSTRAINT',@level2name=N'FK_tEmpl_tStore'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'This status can never change -- employee can never be rehired, etc.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tEmplStatus', @level2type=N'COLUMN',@level2name=N'IsPermanent'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Employee Title' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tEmplTitle', @level2type=N'COLUMN',@level2name=N'EmplTitle'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Manufacturers and Suppliers' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tManufacturer', @level2type=N'COLUMN',@level2name=N'ManufacturerID'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date/Time when price change takes effect' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tProductPriceHist', @level2type=N'COLUMN',@level2name=N'StartDate'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'If the transaction detail was charged based on a price per unit of product' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tTransactionDetail', @level2type=N'COLUMN',@level2name=N'PricePerSellableUnitAsMarked'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'If the transaction detail was a lump sum, not per unit of product' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tTransactionDetail', @level2type=N'COLUMN',@level2name=N'TotalPrice'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[30] 4[17] 2[13] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tStoreHistory"
            Begin Extent = 
               Top = 11
               Left = 243
               Bottom = 183
               Right = 534
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tStore"
            Begin Extent = 
               Top = 14
               Left = 15
               Bottom = 144
               Right = 201
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1980
         Width = 3255
         Width = 1500
         Width = 1980
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 900
         Table = 1260
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1035
         GroupBy = 1350
         Filter = 615
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'v1'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'v1'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[20] 2[14] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "vTopSpendingLoyaltyNumber"
            Begin Extent = 
               Top = 7
               Left = 5
               Bottom = 119
               Right = 176
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 7
               Left = 455
               Bottom = 213
               Right = 649
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 3
               Left = 226
               Bottom = 204
               Right = 417
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vAllTransactionsOfTopSpendingLoyaltyNumber'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vAllTransactionsOfTopSpendingLoyaltyNumber'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tStore"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 135
               Right = 208
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 246
               Bottom = 135
               Right = 437
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "vPurchaseTotals"
            Begin Extent = 
               Top = 6
               Left = 475
               Bottom = 135
               Right = 666
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vAvery'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vAvery'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[36] 4[25] 2[11] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 26
               Left = 264
               Bottom = 253
               Right = 468
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tStore"
            Begin Extent = 
               Top = 20
               Left = 65
               Bottom = 245
               Right = 235
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tLoyalty"
            Begin Extent = 
               Top = 1
               Left = 498
               Bottom = 137
               Right = 684
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 2220
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 2130
         Table = 1215
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCountOfTransactionsByStoreAndLoyalty'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCountOfTransactionsByStoreAndLoyalty'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tCoupon"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 223
               Right = 289
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 2295
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCoupon'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCoupon'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tCouponDetail"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 248
               Right = 242
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCouponDetail'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCouponDetail'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tCoupon"
            Begin Extent = 
               Top = 28
               Left = 79
               Bottom = 209
               Right = 264
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tCouponDetail"
            Begin Extent = 
               Top = 11
               Left = 349
               Bottom = 220
               Right = 568
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tDiscountType"
            Begin Extent = 
               Top = 63
               Left = 661
               Bottom = 295
               Right = 864
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 2235
         Width = 2235
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1485
         Alias = 900
         Table = 2370
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 5505
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCouponDetailsCurrentlyOpen'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCouponDetailsCurrentlyOpen'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[31] 2[8] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tCoupon"
            Begin Extent = 
               Top = 21
               Left = 158
               Bottom = 221
               Right = 337
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tCouponDetail"
            Begin Extent = 
               Top = 4
               Left = 453
               Bottom = 171
               Right = 648
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tCouponSource"
            Begin Extent = 
               Top = 179
               Left = 367
               Bottom = 293
               Right = 546
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tDiscountType"
            Begin Extent = 
               Top = 120
               Left = 679
               Bottom = 296
               Right = 882
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tProduct"
            Begin Extent = 
               Top = 37
               Left = 946
               Bottom = 292
               Right = 1209
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 14
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width =' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCouponInfo'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N' 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 2310
         Alias = 900
         Table = 1380
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCouponInfo'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCouponInfo'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[20] 2[10] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tCoupon"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 135
               Right = 217
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCouponsCurrentlyOpen'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCouponsCurrentlyOpen'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[33] 4[26] 2[17] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tStoreStatus"
            Begin Extent = 
               Top = 98
               Left = 943
               Bottom = 245
               Right = 1141
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "vCurrentStoreStatusForAllStores_Step1"
            Begin Extent = 
               Top = 63
               Left = 25
               Bottom = 186
               Right = 332
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tStore"
            Begin Extent = 
               Top = 14
               Left = 714
               Bottom = 143
               Right = 884
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tStoreHistory"
            Begin Extent = 
               Top = 46
               Left = 513
               Bottom = 224
               Right = 683
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 2160
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 2190
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCurrentStoreStatusForAllStores'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N' = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCurrentStoreStatusForAllStores'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCurrentStoreStatusForAllStores'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[20] 2[7] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tStoreHistory"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 207
               Right = 224
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 4395
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCurrentStoreStatusForAllStores_Step1'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vCurrentStoreStatusForAllStores_Step1'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tDiscountType"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 229
               Right = 241
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vDiscountType'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vDiscountType'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tEmpl"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 135
               Right = 208
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmpl'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmpl'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tStore"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 261
               Right = 208
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tEmpl"
            Begin Extent = 
               Top = 6
               Left = 246
               Bottom = 224
               Right = 416
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tEmplHistory"
            Begin Extent = 
               Top = 35
               Left = 777
               Bottom = 252
               Right = 947
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tEmplStatus"
            Begin Extent = 
               Top = 70
               Left = 991
               Bottom = 266
               Right = 1169
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "vEmplMostCurrentStatusDateChange"
            Begin Extent = 
               Top = 85
               Left = 444
               Bottom = 180
               Right = 697
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmplCountWhoAreCurrentlyEmployedByStore'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N'         Alias = 2925
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmplCountWhoAreCurrentlyEmployedByStore'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmplCountWhoAreCurrentlyEmployedByStore'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[35] 4[28] 2[14] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tEmpl"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 186
               Right = 208
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tStore"
            Begin Extent = 
               Top = 6
               Left = 238
               Bottom = 170
               Right = 408
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tEmplTitle"
            Begin Extent = 
               Top = 6
               Left = 446
               Bottom = 135
               Right = 617
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 930
         Width = 11205
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 2745
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmplDDL'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmplDDL'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tEmpl"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 206
               Right = 226
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tStore"
            Begin Extent = 
               Top = 6
               Left = 454
               Bottom = 234
               Right = 656
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tEmplTitle"
            Begin Extent = 
               Top = 149
               Left = 258
               Bottom = 296
               Right = 443
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmplGridViewReadOnly'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmplGridViewReadOnly'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tEmplHistory"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 191
               Right = 208
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 3375
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 4110
         Table = 4110
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmplMostCurrentStatusDateChange'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmplMostCurrentStatusDateChange'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tEmpl"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 255
               Right = 208
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tEmplTitle"
            Begin Extent = 
               Top = 6
               Left = 246
               Bottom = 118
               Right = 417
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmployeeWhoCanBeAStoreManager'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vEmployeeWhoCanBeAStoreManager'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[20] 2[14] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 261
               Right = 232
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 23
               Left = 307
               Bottom = 273
               Right = 498
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionType"
            Begin Extent = 
               Top = 108
               Left = 678
               Bottom = 203
               Right = 866
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 4440
         Alias = 1545
         Table = 2655
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 3630
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vHourlySalesByCalendarDay'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vHourlySalesByCalendarDay'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 249
               Right = 248
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 286
               Bottom = 291
               Right = 493
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionType"
            Begin Extent = 
               Top = 90
               Left = 589
               Bottom = 198
               Right = 783
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tStore"
            Begin Extent = 
               Top = 6
               Left = 821
               Bottom = 135
               Right = 1007
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         O' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vHourlySalesByCalendarDayGroupedByStore'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N'r = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vHourlySalesByCalendarDayGroupedByStore'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vHourlySalesByCalendarDayGroupedByStore'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 26
               Left = 229
               Bottom = 259
               Right = 420
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tStore"
            Begin Extent = 
               Top = 0
               Left = 448
               Bottom = 264
               Right = 707
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "vMaxTransactionID"
            Begin Extent = 
               Top = 37
               Left = 14
               Bottom = 115
               Right = 198
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 8400
         Width = 1500
         Width = 1500
         Width = 7065
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 3345
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vLastTransactionInfo'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vLastTransactionInfo'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 258
               Right = 232
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 270
               Bottom = 244
               Right = 461
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionType"
            Begin Extent = 
               Top = 6
               Left = 499
               Bottom = 149
               Right = 687
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 2385
         Alias = 2145
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vLoyaltyIDThatHasBroughtTheMostGroceries'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vLoyaltyIDThatHasBroughtTheMostGroceries'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 135
               Right = 245
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vMaxTransactionID'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vMaxTransactionID'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 135
               Right = 229
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 6
               Left = 267
               Bottom = 135
               Right = 461
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tLoyalty"
            Begin Extent = 
               Top = 6
               Left = 499
               Bottom = 135
               Right = 670
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vMostExpensiveTransactionsByLoyaltyNumberAndTotalPrice'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vMostExpensiveTransactionsByLoyaltyNumberAndTotalPrice'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransactionType"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 148
               Right = 226
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 264
               Bottom = 220
               Right = 455
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 2280
         Alias = 900
         Table = 1800
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vNumberOfEachTransactionType'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vNumberOfEachTransactionType'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[20] 2[15] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tProduct"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 278
               Right = 301
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tName"
            Begin Extent = 
               Top = 6
               Left = 339
               Bottom = 101
               Right = 509
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 2790
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductDDL'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductDDL'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tContainer"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 101
               Right = 208
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tProduct"
            Begin Extent = 
               Top = 21
               Left = 238
               Bottom = 343
               Right = 501
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tManufacturer"
            Begin Extent = 
               Top = 19
               Left = 531
               Bottom = 148
               Right = 703
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tName"
            Begin Extent = 
               Top = 227
               Left = 531
               Bottom = 322
               Right = 701
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tBrand"
            Begin Extent = 
               Top = 107
               Left = 1002
               Bottom = 202
               Right = 1172
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
       ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductInfo'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N'  Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductInfo'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductInfo'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[20] 2[12] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tProduct"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 247
               Right = 323
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tManufacturer"
            Begin Extent = 
               Top = 6
               Left = 361
               Bottom = 135
               Right = 533
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 2400
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 5520
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductRpt'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductRpt'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[30] 2[11] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 135
               Right = 229
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tProduct"
            Begin Extent = 
               Top = 6
               Left = 267
               Bottom = 135
               Right = 530
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 6
               Left = 568
               Bottom = 135
               Right = 762
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionType"
            Begin Extent = 
               Top = 6
               Left = 800
               Bottom = 101
               Right = 988
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tManufacturer"
            Begin Extent = 
               Top = 6
               Left = 1026
               Bottom = 135
               Right = 1198
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tName"
            Begin Extent = 
               Top = 6
               Left = 1236
               Bottom = 101
               Right = 1406
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tBrand"
            Begin Extent = 
               Top = 102
               Left = 800
               Bottom = 197
               Right = 970
            End
    ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductSalesByHours_NonPrime'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N'        DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 25
         Column = 3735
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductSalesByHours_NonPrime'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductSalesByHours_NonPrime'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[29] 2[12] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tProduct"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 296
               Right = 301
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 6
               Left = 339
               Bottom = 272
               Right = 533
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionType"
            Begin Extent = 
               Top = 105
               Left = 1217
               Bottom = 200
               Right = 1405
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 1007
               Bottom = 242
               Right = 1198
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tName"
            Begin Extent = 
               Top = 189
               Left = 618
               Bottom = 284
               Right = 788
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tManufacturer"
            Begin Extent = 
               Top = 95
               Left = 793
               Bottom = 224
               Right = 965
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tBrand"
            Begin Extent = 
               Top = 6
               Left = 1236
               Bottom = 101
               Right = 1406
            End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductSalesByHours_Prime'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N'
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 21
         Column = 2895
         Alias = 900
         Table = 2130
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductSalesByHours_Prime'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductSalesByHours_Prime'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[20] 2[17] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tCoupon"
            Begin Extent = 
               Top = 57
               Left = 169
               Bottom = 165
               Right = 394
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tCouponDetail"
            Begin Extent = 
               Top = 157
               Left = 433
               Bottom = 265
               Right = 609
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 9
               Left = 641
               Bottom = 117
               Right = 891
            End
            DisplayFlags = 280
            TopColumn = 5
         End
         Begin Table = "tProduct"
            Begin Extent = 
               Top = 158
               Left = 920
               Bottom = 266
               Right = 1156
            End
            DisplayFlags = 280
            TopColumn = 8
         End
         Begin Table = "tName"
            Begin Extent = 
               Top = 186
               Left = 1253
               Bottom = 264
               Right = 1404
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tManufacturer"
            Begin Extent = 
               Top = 37
               Left = 1241
               Bottom = 145
               Right = 1397
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductsWithNoCoupons'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N'
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductsWithNoCoupons'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vProductsWithNoCoupons'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tStore"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 135
               Right = 208
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 246
               Bottom = 135
               Right = 437
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "vPurchaseTotals"
            Begin Extent = 
               Top = 6
               Left = 475
               Bottom = 135
               Right = 666
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vPurchasesAtStore'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vPurchasesAtStore'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[29] 2[12] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 208
               Right = 232
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 0
               Left = 330
               Bottom = 212
               Right = 521
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vPurchaseTotals'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vPurchaseTotals'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tStore"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 135
               Right = 224
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 262
               Bottom = 135
               Right = 469
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 6
               Left = 507
               Bottom = 135
               Right = 717
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vSam'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vSam'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[20] 2[11] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tStore"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 248
               Right = 208
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "vStoreStatusThatIsClosedButNotClosedForever"
            Begin Extent = 
               Top = 3
               Left = 664
               Bottom = 149
               Right = 1004
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tStoreHistory"
            Begin Extent = 
               Top = 9
               Left = 340
               Bottom = 281
               Right = 510
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 5730
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1470
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vStoresNotClosedForever'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vStoresNotClosedForever'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tStoreStatus"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 172
               Right = 255
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vStoreStatusTable'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vStoreStatusTable'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tStoreStatus"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 268
               Right = 331
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vStoreStatusThatIsClosedButNotClosedForever'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vStoreStatusThatIsClosedButNotClosedForever'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[54] 4[15] 2[13] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 173
               Right = 232
            End
            DisplayFlags = 280
            TopColumn = 2
         End
         Begin Table = "tProduct"
            Begin Extent = 
               Top = 6
               Left = 270
               Bottom = 219
               Right = 533
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tManufacturer"
            Begin Extent = 
               Top = 6
               Left = 779
               Bottom = 135
               Right = 951
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tName"
            Begin Extent = 
               Top = 6
               Left = 571
               Bottom = 101
               Right = 741
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 152
               Left = 2
               Bottom = 290
               Right = 224
            End
            DisplayFlags = 280
            TopColumn = 5
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1860
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTop10ProductsByQtyOfProduct'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N' = 1890
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTop10ProductsByQtyOfProduct'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTop10ProductsByQtyOfProduct'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 479
               Bottom = 189
               Right = 670
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tLoyalty"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 135
               Right = 209
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTop15MostLoyalCustomers'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTop15MostLoyalCustomers'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tLoyalty"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 135
               Right = 209
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 247
               Bottom = 135
               Right = 438
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 6
               Left = 476
               Bottom = 165
               Right = 706
            End
            DisplayFlags = 280
            TopColumn = 2
         End
         Begin Table = "tTransactionType"
            Begin Extent = 
               Top = 178
               Left = 468
               Bottom = 302
               Right = 659
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
        ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTop5CustomersReceivingRefunds'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N' Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTop5CustomersReceivingRefunds'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTop5CustomersReceivingRefunds'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[34] 4[28] 2[12] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tBrand"
            Begin Extent = 
               Top = 289
               Left = 308
               Bottom = 384
               Right = 494
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tProduct"
            Begin Extent = 
               Top = 9
               Left = 726
               Bottom = 304
               Right = 989
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tName"
            Begin Extent = 
               Top = 0
               Left = 1026
               Bottom = 95
               Right = 1196
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tManufacturer"
            Begin Extent = 
               Top = 168
               Left = 1086
               Bottom = 297
               Right = 1274
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionType"
            Begin Extent = 
               Top = 13
               Left = 12
               Bottom = 108
               Right = 216
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 14
               Left = 256
               Bottom = 236
               Right = 463
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 21
               Left = 502
               Bottom = 234
               Right = 696
            End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTopProductsByTotalSales'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N'            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 2895
         Width = 8520
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 10155
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTopProductsByTotalSales'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTopProductsByTotalSales'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 63
               Left = 450
               Bottom = 267
               Right = 644
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionType"
            Begin Extent = 
               Top = 88
               Left = 0
               Bottom = 203
               Right = 198
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 31
               Left = 230
               Bottom = 328
               Right = 421
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tProduct"
            Begin Extent = 
               Top = 6
               Left = 682
               Bottom = 305
               Right = 945
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tManufacturer"
            Begin Extent = 
               Top = 6
               Left = 983
               Bottom = 135
               Right = 1155
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tName"
            Begin Extent = 
               Top = 136
               Left = 1167
               Bottom = 231
               Right = 1337
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTopSellingProductByTotalAmount'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N'
         Width = 2265
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTopSellingProductByTotalAmount'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTopSellingProductByTotalAmount'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[41] 4[20] 2[15] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tLoyalty"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 135
               Right = 209
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 32
               Left = 460
               Bottom = 241
               Right = 654
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 42
               Left = 238
               Bottom = 171
               Right = 429
            End
            DisplayFlags = 280
            TopColumn = 4
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 11
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTopSpendingLoyaltyNumber'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTopSpendingLoyaltyNumber'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tBrand"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 101
               Right = 224
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tProduct"
            Begin Extent = 
               Top = 6
               Left = 262
               Bottom = 135
               Right = 541
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tName"
            Begin Extent = 
               Top = 102
               Left = 38
               Bottom = 197
               Right = 224
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tManufacturer"
            Begin Extent = 
               Top = 138
               Left = 262
               Bottom = 267
               Right = 450
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionType"
            Begin Extent = 
               Top = 198
               Left = 38
               Bottom = 293
               Right = 242
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 270
               Left = 280
               Bottom = 399
               Right = 487
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 294
               Left = 38
               Bottom = 423
               Right = 248
            End
   ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTopToProductsByTotalSales'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N'         DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTopToProductsByTotalSales'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTopToProductsByTotalSales'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tLoyalty"
            Begin Extent = 
               Top = 4
               Left = 73
               Bottom = 186
               Right = 232
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 263
               Bottom = 240
               Right = 470
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 6
               Left = 508
               Bottom = 188
               Right = 733
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tTransactionType"
            Begin Extent = 
               Top = 202
               Left = 501
               Bottom = 314
               Right = 692
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1710
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
        ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTotalAmountByTransactionType'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N' Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTotalAmountByTransactionType'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTotalAmountByTransactionType'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransactionDetail"
            Begin Extent = 
               Top = 27
               Left = 190
               Bottom = 236
               Right = 465
            End
            DisplayFlags = 280
            TopColumn = 0
         End
         Begin Table = "tProduct"
            Begin Extent = 
               Top = 47
               Left = 564
               Bottom = 237
               Right = 827
            End
            DisplayFlags = 280
            TopColumn = 6
         End
         Begin Table = "tName"
            Begin Extent = 
               Top = 62
               Left = 882
               Bottom = 157
               Right = 1068
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 3000
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 3255
         Alias = 1320
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTotalSalesByProduct'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTotalSalesByProduct'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties = 
   Begin PaneConfigurations = 
      Begin PaneConfiguration = 0
         NumPanes = 4
         Configuration = "(H (1[40] 4[20] 2[20] 3) )"
      End
      Begin PaneConfiguration = 1
         NumPanes = 3
         Configuration = "(H (1 [50] 4 [25] 3))"
      End
      Begin PaneConfiguration = 2
         NumPanes = 3
         Configuration = "(H (1 [50] 2 [25] 3))"
      End
      Begin PaneConfiguration = 3
         NumPanes = 3
         Configuration = "(H (4 [30] 2 [40] 3))"
      End
      Begin PaneConfiguration = 4
         NumPanes = 2
         Configuration = "(H (1 [56] 3))"
      End
      Begin PaneConfiguration = 5
         NumPanes = 2
         Configuration = "(H (2 [66] 3))"
      End
      Begin PaneConfiguration = 6
         NumPanes = 2
         Configuration = "(H (4 [50] 3))"
      End
      Begin PaneConfiguration = 7
         NumPanes = 1
         Configuration = "(V (3))"
      End
      Begin PaneConfiguration = 8
         NumPanes = 3
         Configuration = "(H (1[56] 4[18] 2) )"
      End
      Begin PaneConfiguration = 9
         NumPanes = 2
         Configuration = "(H (1 [75] 4))"
      End
      Begin PaneConfiguration = 10
         NumPanes = 2
         Configuration = "(H (1[66] 2) )"
      End
      Begin PaneConfiguration = 11
         NumPanes = 2
         Configuration = "(H (4 [60] 2))"
      End
      Begin PaneConfiguration = 12
         NumPanes = 1
         Configuration = "(H (1) )"
      End
      Begin PaneConfiguration = 13
         NumPanes = 1
         Configuration = "(V (4))"
      End
      Begin PaneConfiguration = 14
         NumPanes = 1
         Configuration = "(V (2))"
      End
      ActivePaneConfig = 0
   End
   Begin DiagramPane = 
      Begin Origin = 
         Top = 0
         Left = 0
      End
      Begin Tables = 
         Begin Table = "tTransaction"
            Begin Extent = 
               Top = 6
               Left = 38
               Bottom = 239
               Right = 290
            End
            DisplayFlags = 280
            TopColumn = 0
         End
      End
   End
   Begin SQLPane = 
   End
   Begin DataPane = 
      Begin ParameterDefaults = ""
      End
      Begin ColumnWidths = 9
         Width = 284
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
         Width = 1500
      End
   End
   Begin CriteriaPane = 
      Begin ColumnWidths = 12
         Column = 1440
         Alias = 900
         Table = 1170
         Output = 720
         Append = 1400
         NewValue = 1170
         SortType = 1350
         SortOrder = 1410
         GroupBy = 1350
         Filter = 1350
         Or = 1350
         Or = 1350
         Or = 1350
      End
   End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTotalTransactions'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vTotalTransactions'
GO